这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《关于时间复杂度》回复:
| O(∞) | 0 | 0 | | :----------: | :----------: | :----------: |
在讨论《关于拓欧的详解》回复:
orz 小学就红名了
```cpp #include using namespace std; int a[100]; int b[100]; void sort(int l,int r) { if(l+1>=r) return; int mid = (l+r)/2; sort(l,mid); sort(mid,r); int i=l,j=…
```cpp #include #include #include using namespace std; #define LL unsigned long long #define RI register int int n,m; LL GO[25][25]; bool in(int x,int y) //(x,y…