結果

問題 No.2290 UnUnion Find
ユーザー tailstails
提出日時 2023-05-06 01:49:53
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 27,008 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-02 20:04:42
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 5 ms
5,760 KB
testcase_04 AC 7 ms
6,016 KB
testcase_05 AC 7 ms
6,144 KB
testcase_06 AC 8 ms
6,016 KB
testcase_07 AC 8 ms
6,144 KB
testcase_08 AC 8 ms
6,016 KB
testcase_09 AC 8 ms
6,144 KB
testcase_10 AC 8 ms
6,144 KB
testcase_11 AC 8 ms
6,144 KB
testcase_12 AC 8 ms
6,144 KB
testcase_13 AC 7 ms
6,144 KB
testcase_14 AC 7 ms
6,144 KB
testcase_15 AC 7 ms
6,144 KB
testcase_16 AC 7 ms
6,144 KB
testcase_17 AC 7 ms
6,144 KB
testcase_18 AC 8 ms
6,144 KB
testcase_19 AC 11 ms
6,144 KB
testcase_20 AC 13 ms
6,400 KB
testcase_21 AC 6 ms
5,504 KB
testcase_22 AC 10 ms
6,016 KB
testcase_23 AC 10 ms
6,016 KB
testcase_24 AC 13 ms
6,144 KB
testcase_25 AC 9 ms
6,016 KB
testcase_26 AC 13 ms
6,272 KB
testcase_27 AC 13 ms
6,272 KB
testcase_28 AC 10 ms
6,144 KB
testcase_29 AC 12 ms
6,144 KB
testcase_30 AC 7 ms
5,632 KB
testcase_31 AC 12 ms
6,144 KB
testcase_32 AC 9 ms
6,144 KB
testcase_33 AC 11 ms
6,016 KB
testcase_34 AC 13 ms
6,272 KB
testcase_35 AC 13 ms
6,272 KB
testcase_36 AC 10 ms
6,144 KB
testcase_37 AC 11 ms
6,016 KB
testcase_38 AC 10 ms
6,144 KB
testcase_39 AC 10 ms
6,016 KB
testcase_40 AC 12 ms
6,272 KB
testcase_41 AC 9 ms
6,016 KB
testcase_42 AC 12 ms
6,144 KB
testcase_43 AC 11 ms
6,144 KB
testcase_44 AC 7 ms
6,144 KB
testcase_45 AC 7 ms
6,144 KB
testcase_46 AC 8 ms
6,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:74:40: warning: multi-character character constant [-Wmultichar]
   74 |                         *(unsigned*)wp='\n1-';
      |                                        ^~~~~~
main.c:78:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   78 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:79:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   79 |         _exit(0);
      |         ^~~~~
main.c:79:9: warning: incompatible implicit declaration of built-in function ‘_exit’ [-Wbuiltin-declaration-mismatch]

ソースコード

diff #

#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++!=10)
#define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define wt(v) {unsigned _z=v;ulong _n=0,_d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(ulong*)wp=_d;wp+=_n;}

typedef unsigned long ulong;

#define UFSIZE 200004
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;
}

char wbuf[1<<25];
int a[200004][2];

int main(){
	uf_init();
	for(int i=0;i<200004;++i){
		a[i][0]=i+1;
		a[i][1]=i-1;
	}
	rd_init();
	int n=rd();
	a[n][0]=1;
	a[1][1]=n;
	rd_skip();
	char*wp=wbuf;
	for(int t;t=*rp;){
		rp+=2;
		if(t=='1'){
			int u=uf_root(rd());
			int v=uf_root(rd());
			if(u!=v){
				if(--n==1){
					break;
				}
				int x;
				if(ufbuf[u]<ufbuf[v]){
					ufbuf[u]+=ufbuf[v];
					ufbuf[v]=u;
					x=v;
				}else{
					ufbuf[v]+=ufbuf[u];
					ufbuf[u]=v;
					x=u;
				}
				int b=a[x][0];
				int c=a[x][1];
				a[c][0]=b;
				a[b][1]=c;
			}
		}else{
			int u=uf_root(rd());
			wt(a[u][0]);
			*wp++='\n';
		}
	}
	for(int t;t=*rp;){
		rd_skip();
		if(t=='2'){
			*(unsigned*)wp='\n1-';
			wp+=3;
		}
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0