結果

問題 No.2991 Hypercubic Graph Flow
ユーザー tailstails
提出日時 2024-12-16 20:43:44
言語 cLay
(20240714-1)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 175,632 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-16 20:43:48
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 8 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,m=1<<n;
if(n==1){
	wt("No");
	exit(0);
}
wt("Yes");
rep(y,m){
	ll a[m];
	rep(x,m){
		ll z=x^y;
		ll w;
		if(n&1){
			w=
				z==0?0:z&z-1?0:
				z<4?(x&3)+(y&3)>=4?-1:1:
				z==1<<n-1?(x&3)==0||(x&3)==3?2:-2 :
				z&0x155?-1:1;
		}else{
			w=
				z==0?0:z&z-1?0:
				z<4?(x&3)==2||(y&3)==2?1:-1:
				z&0x155?-1:1;
		}
		if(w){
			w=BIT_popcount((x|y)>>2)&1^(y<x)?-w:w;
		}
		a[x]=w;
	}
	wt(a(m));
}
0