結果

問題 No.2319 Friends+
ユーザー tailstails
提出日時 2023-05-27 01:34:00
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 266 ms / 3,000 ms
コード長 1,015 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 24,960 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-06-07 10:42:39
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 72 ms
56,704 KB
testcase_03 AC 76 ms
56,704 KB
testcase_04 AC 72 ms
56,704 KB
testcase_05 AC 70 ms
56,704 KB
testcase_06 AC 74 ms
56,704 KB
testcase_07 AC 266 ms
106,240 KB
testcase_08 AC 240 ms
106,240 KB
testcase_09 AC 239 ms
106,240 KB
testcase_10 AC 236 ms
106,240 KB
testcase_11 AC 239 ms
106,240 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 79 ms
55,936 KB
testcase_19 AC 142 ms
105,472 KB
testcase_20 AC 69 ms
55,680 KB
testcase_21 AC 69 ms
55,680 KB
testcase_22 AC 70 ms
55,680 KB
testcase_23 AC 105 ms
80,640 KB
testcase_24 AC 92 ms
67,968 KB
testcase_25 AC 83 ms
61,824 KB
testcase_26 AC 80 ms
58,752 KB
testcase_27 AC 75 ms
57,088 KB
testcase_28 AC 70 ms
56,448 KB
testcase_29 AC 76 ms
56,064 KB
testcase_30 AC 70 ms
55,808 KB
testcase_31 AC 69 ms
55,680 KB
testcase_32 AC 70 ms
55,680 KB
testcase_33 AC 66 ms
55,552 KB
testcase_34 AC 64 ms
55,552 KB
testcase_35 AC 61 ms
55,552 KB
testcase_36 AC 140 ms
106,240 KB
testcase_37 AC 38 ms
57,600 KB
testcase_38 AC 86 ms
105,728 KB
testcase_39 AC 87 ms
105,728 KB
testcase_40 AC 84 ms
105,600 KB
testcase_41 AC 84 ms
105,856 KB
testcase_42 AC 85 ms
105,984 KB
testcase_43 AC 89 ms
105,856 KB
testcase_44 AC 84 ms
105,856 KB
testcase_45 AC 78 ms
105,728 KB
testcase_46 AC 40 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:47:45: warning: multi-character character constant [-Wmultichar]
   47 |                                         *wp='\nseY';
      |                                             ^~~~~~~
main.c:54:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   54 |         write(1,wbuf,(wp-wbuf)*sizeof*wbuf);
      |         ^~~~~
main.c:55:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   55 |         _exit(0);
      |         ^~~~~
main.c:55: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){
			rep(i,320){
				if(f[x][i]&g[t][i]){
					p[x]=t;
					ulong k=1ul<<x;
					g[s][x>>6]&=~k;
					g[t][x>>6]|=k;
					*wp='\nseY';
					break;
				}
			}
		}
		++wp;
	}
	write(1,wbuf,(wp-wbuf)*sizeof*wbuf);
	_exit(0);
}
0