結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | tails |
提出日時 | 2020-10-23 09:23:52 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 719 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 31,744 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 09:51:39 |
合計ジャッジ時間 | 1,777 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 0 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 | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 5 ms
5,376 KB |
testcase_24 | AC | 5 ms
5,376 KB |
testcase_25 | AC | 5 ms
5,376 KB |
コンパイルメッセージ
main.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int] 12 | main(){ | ^~~~ main.c: In function 'main': main.c:13:9: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration] 13 | read(0,rbuf,sizeof rbuf); | ^~~~ main.c:46:17: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 46 | write(1,"Bob",3); | ^~~~~ main.c:50:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 50 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char rbuf[1200000]; int ufb[100000]; int h[100000]; int uf(int i){ return ufb[i]>=0?ufb[i]=uf(ufb[i]):i; } #define RD(v) for(v=0;c=*r++-48,c>=0;v=v*10+c) main(){ read(0,rbuf,sizeof rbuf); char*r=rbuf; int c; int n; RD(n); for(int i=0;i<n;++i){ ufb[i]=-1; } int c1=0; int c2=n; while(--n){ int u; RD(u); int v; RD(v); if(++h[u]==2) --c2; if(++h[v]==2) --c2; int ur=uf(u); int vr=uf(v); if(ur==vr){ ++c1; }else{ if(ufb[ur]>ufb[vr]){ ufb[vr]+=ufb[ur]; ufb[ur]=vr; }else{ ufb[ur]+=ufb[vr]; ufb[vr]=ur; } } } if(c1==0||c1==1&&c2==1){ write(1,"Bob",3); }else{ write(1,"Alice",5); } _exit(0); }