这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; int cnt; struct edge{ int to; int w; int nxt; }edges[100]; int head[105]; void add(int u ,int v,int w){ cnt++; edges[cnt].t…
在讨论《解锁成就--满江红--help必关》回复:
那时候来看题解
```cpp #include using namespace std; const int N=510; struct RawEdge{ int from,to,val; }; vector edges; int fa[N]; bool cmp(RawEdge &a,RawEdge &b){ return a.val…
```cpp #include using namespace std; const int N=510; struct RawEdge{ int from,to,val; }; vector edges; int fa[N]; bool cmp(RawEdge &a,RawEdge &b){ return a.val…
在文章《P5318》发表评论:
我是不白吃,我真是太有文化了
```cpp #include #include #include #include const int N = 1e5 + 1e4; const int M = 1e6 + 1e5; struct Edge { int to, next; } e[M]; int ehead[N], ecnt; void add_ed…
```cpp #include using namespace std; const int N=110; const int M=1100; int n,m; struct Edge{ int to,nxt; }e[M*2]; int ehead[N],ecnt; void add_edge(int from,int…
```cpp #include using namespace std; char Map[110][110]; int n,m,i,j,l[8][2]={{1,0},{0,1},{-1,0},{0,-1},{1,1},{-1,-1},{1,-1},{-1,1}}; bool vis[110][110]; struct…
在讨论《求调》回复:
提交过了
在讨论《求调》回复:
0分
在讨论《“y0”可以作为变量名吗?》回复:
全局不行(函数) 局部可以
在讨论《20pts求助大佬o( ̄┰ ̄*)ゞ(AC必关注)》回复:
救救我
```c #include using namespace std; int n,q; int a[1010]; int main(){ // freopen("libray.in","r",stdin); // freopen("libray.out","w",stdout); cin>>n>>q; for(int…
在讨论《wa得80分,求助(玄关)》回复:
有点懵逼····( ------------ 不会)
在讨论《wa得80分,求助(玄关)》回复:
嗯~~~~~~
```c #include #include using namespace std; queue hori; queue para; int n,m; int ans; char s[101][101]; inline int read(){ char p=0;int r=0,o=0; for(;p '9';o|=p…
在讨论《为什么得80(-oo-)》回复:
谢谢大佬?
``` #include using namespace std; struct M{ int start; int end; }M1[1000005]; bool compare(M a, M b){ return a.end < b.end; } int main(){ int n,i,j; scanf("%d",…