結果
問題 | No.1054 Union add query |
ユーザー | tails |
提出日時 | 2023-03-13 18:43:28 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,648 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 14,868 KB |
最終ジャッジ日時 | 2024-09-18 07:38:33 |
合計ジャッジ時間 | 3,113 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 22 ms
12,760 KB |
testcase_04 | AC | 20 ms
12,504 KB |
testcase_05 | AC | 20 ms
14,868 KB |
testcase_06 | AC | 17 ms
12,760 KB |
testcase_07 | AC | 12 ms
12,376 KB |
testcase_08 | AC | 16 ms
12,504 KB |
testcase_09 | AC | 18 ms
12,632 KB |
testcase_10 | AC | 5 ms
10,708 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:76:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration] 76 | write(1,wbuf,wp-wbuf); | ^~~~~ main.c:77:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration] 77 | _exit(0); | ^~~~~ main.c:77:9: warning: incompatible implicit declaration of built-in function ‘_exit’ [-Wbuiltin-declaration-mismatch]
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rd_init() char*rp=({char*mmap();mmap(0l,1l<<25,1,2,0,0ll);}) #define rd_skip() while(*rp++>=48) #define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;}) #define rd_signed() ({int _s=*rp=='-'&&++rp,_v=rd();_s?-_v:_v;}) #define WTHI(v) {unsigned _z=v;int _n=0;ulong _d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(ulong*)wp=_d;wp+=_n;} #define WTLO(v) {unsigned _z=v;int _n=8;ulong _d=0;while(_d=_d<<8|0x30|_z%10,_z/=10,--_n);*(ulong*)wp=_d;wp+=8;} #define wt(v) if(v>=100000000){WTHI(v/100000000);WTLO(v);}else{WTHI(v);} typedef unsigned long ulong; #define UFSIZE 500002 struct{int u,v;}ufbuf[UFSIZE]; void uf_init(){ for(int i=0;i<UFSIZE;++i){ ufbuf[i].u=-1; ufbuf[i].v=0; } } int uf_root(int a){ int b,t=a; int y,z=0; while(b=ufbuf[t].u,b>=0) z+=ufbuf[t].v,t=b; while(b=ufbuf[a].u,b>=0) y=ufbuf[a].v,ufbuf[a].v=z,z-=y,ufbuf[a].u=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].u<ufbuf[b].u){ ufbuf[b].v-=ufbuf[a].v; ufbuf[a].u+=ufbuf[b].u; ufbuf[b].u=a; }else{ ufbuf[a].v-=ufbuf[b].v; ufbuf[b].u+=ufbuf[a].u; ufbuf[a].u=b; } } } char wbuf[1<<25]; int main(){ uf_init(); rd_init(); int n=rd(); rd_skip(); char*wp=wbuf; while(*rp){ int t=*rp; rp+=2; int a=rd(); if(t=='1'){ int b=rd(); uf_unite(a,b); } if(t=='2'){ int b=rd_signed(); ufbuf[uf_root(a)].v+=b; } if(t=='3'){ rp+=2; int z=0; while(z+=ufbuf[a].v,a=ufbuf[a].u,a>=0); if(z<0){ *wp++='-'; z=-z; } wt(z); *wp++='\n'; } } write(1,wbuf,wp-wbuf); _exit(0); }