結果
問題 | No.556 仁義なきサルたち |
ユーザー | tails |
提出日時 | 2020-11-25 09:57:08 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,075 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 19:15:38 |
合計ジャッジ時間 | 1,171 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c:37:1: warning: return type defaults to 'int' [-Wimplicit-int] 37 | main(){ | ^~~~ main.c: In function 'main': main.c:61:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 61 | write(1,wbuf,(char*)wp-(char*)wbuf); | ^~~~~ main.c:62:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 62 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); #define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} long wbuf[10000]; #define WT(v) {long _z=v,_d=0;while(_d=_d<<8|0x30|_z%10,_z/=10);*wp++=_d|0x0a20202020202020l;} #define UFSIZE 10001 int ufbuf[UFSIZE]; void uf_init(){ for(int i=0;i<UFSIZE;++i){ ufbuf[i]=-1; } } int uf_root(int a){ int b; int t=a; while(b=ufbuf[t],b>=0) t=b; while(b=ufbuf[a],b>=0) ufbuf[a]=t,a=b; return t; } void uf_unite(int a,int b){ a=uf_root(a); b=uf_root(b); if(a!=b){ if(ufbuf[a]<ufbuf[b]){ ufbuf[a]+=ufbuf[b]; ufbuf[b]=a; }else{ ufbuf[b]+=ufbuf[a]; ufbuf[a]=b; } } } main(){ uf_init(); char*rp=mmap(0l,6l*20003,1,2,0,0ll); RD(n); while(*rp++!=10); do{ RD(a); RD(b); a=uf_root(a); b=uf_root(b); if(a!=b){ if((ufbuf[a]-ufbuf[b]?:a-b)<0){ ufbuf[a]+=ufbuf[b]; ufbuf[b]=a; }else{ ufbuf[b]+=ufbuf[a]; ufbuf[a]=b; } } }while(*rp); long*wp=wbuf; for(int i=1;i<=n;++i){ WT(uf_root(i)); } write(1,wbuf,(char*)wp-(char*)wbuf); _exit(0); }