这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《为什么只有80》回复:
##我的也只有80.很迷 ```cpp #include using namespace std; int A[1000000]; int Q[1000000]; int F[1000000]; int B[1000000]; int find(int l,int r,int x) { int mid=(l+r)>>1…
在讨论《美》回复:
###一点都不美
##很朴素的,但是提交之后五颜六色的方块,很迷,求大佬看 ```cpp #include using namespace std; const int maxn=10010; const int maxm=500500; const int inf=2147483647; int Head[maxn],Next[max…
```cpp #include using namespace std; int A[10010],B[110]; int main() { int n,m,mn=110,ans=0,k,top=m; scanf("%d%d",&n,&m); for(int i=1;i A[i])mn=A[i];} while(top…
```cpp #include using namespace std; int dfs(int top,int x) { if(top&&!x)return 1; if(!top&&x)return dfs(top+1,x-1); else return dfs(top-1,x)+dfs(top+1,x-1); }…
```cpp #include using namespace std; int A[3][3]; int main() { int a,b; scanf("%d%d",&a,&b); A[0][1]=a; A[0][2]=b; for(int i=1;i<=2;i++) for(int j=1;j<=2;j++) A…