結果

問題 No.2319 Friends+
ユーザー tailstails
提出日時 2023-05-27 01:30:58
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 144 ms / 3,000 ms
コード長 1,020 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 27,648 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-07 10:40:45
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 49 ms
56,704 KB
testcase_03 AC 46 ms
56,704 KB
testcase_04 AC 46 ms
56,704 KB
testcase_05 AC 45 ms
56,704 KB
testcase_06 AC 48 ms
56,832 KB
testcase_07 AC 139 ms
106,368 KB
testcase_08 AC 144 ms
106,368 KB
testcase_09 AC 142 ms
106,240 KB
testcase_10 AC 141 ms
106,368 KB
testcase_11 AC 139 ms
106,368 KB
testcase_12 AC 2 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 0 ms
5,376 KB
testcase_18 AC 40 ms
55,936 KB
testcase_19 AC 92 ms
105,600 KB
testcase_20 AC 42 ms
55,680 KB
testcase_21 AC 41 ms
55,680 KB
testcase_22 AC 41 ms
55,680 KB
testcase_23 AC 64 ms
80,512 KB
testcase_24 AC 53 ms
68,096 KB
testcase_25 AC 51 ms
61,824 KB
testcase_26 AC 49 ms
58,624 KB
testcase_27 AC 49 ms
57,216 KB
testcase_28 AC 42 ms
56,448 KB
testcase_29 AC 41 ms
56,064 KB
testcase_30 AC 42 ms
55,808 KB
testcase_31 AC 42 ms
55,680 KB
testcase_32 AC 41 ms
55,552 KB
testcase_33 AC 40 ms
55,680 KB
testcase_34 AC 41 ms
55,680 KB
testcase_35 AC 40 ms
55,680 KB
testcase_36 AC 109 ms
106,240 KB
testcase_37 AC 30 ms
57,600 KB
testcase_38 AC 49 ms
105,600 KB
testcase_39 AC 49 ms
105,728 KB
testcase_40 AC 49 ms
105,856 KB
testcase_41 AC 51 ms
105,856 KB
testcase_42 AC 52 ms
105,856 KB
testcase_43 AC 50 ms
105,856 KB
testcase_44 AC 49 ms
105,984 KB
testcase_45 AC 45 ms
105,728 KB
testcase_46 AC 37 ms
57,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:36:21: warning: multi-character character constant [-Wmultichar]
   36 |                 *wp='\n oN';
      |                     ^~~~~~~
main.c:50:37: warning: multi-character character constant [-Wmultichar]
   50 |                                 *wp='\nseY';
      |                                     ^~~~~~~
main.c:55:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   55 |         write(1,wbuf,(wp-wbuf)*sizeof*wbuf);
      |         ^~~~~
main.c:56:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   56 |         _exit(0);
      |         ^~~~~
main.c:56: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++>=48)
#define rd_skip_line() while(*rp++!=10)
#define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define rep(v,e) for(typeof(e) v=0;v<e;++v)
#define rep3(v,s,e) for(typeof(e) v=s;v<e;++v)

typedef unsigned long ulong;

unsigned wbuf[1<<20];
int p[20004];
ulong f[20004][320];
ulong g[20004][320];

int main(){
	rd_init();
	int n=rd();
	int m=rd();
	rep3(i,1,n+1){
		int pi=rd();
		p[i]=pi;
		g[pi][i>>6]|=1ul<<i;
	}
	rep(i,m){
		int a=rd();
		int b=rd();
		f[a][b>>6]|=1ul<<b;
		f[b][a>>6]|=1ul<<a;
	}
	rd_skip();
	unsigned*wp=wbuf;
	while(*rp){
		*wp='\n oN';
		int x=rd();
		int s=p[x];
		int t=p[rd()];
		if(s!=t){
			ulong a=0;
			rep(i,320){
				a|=f[x][i]&g[t][i];
			}
			if(a){
				p[x]=t;
				ulong k=1ul<<x;
				g[s][x>>6]&=~k;
				g[t][x>>6]|=k;
				*wp='\nseY';
			}
		}
		++wp;
	}
	write(1,wbuf,(wp-wbuf)*sizeof*wbuf);
	_exit(0);
}
0