結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 10 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 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 b=BIT_ctz(z);
		if(n&1){
			a[x]=
				z==0?0:z&z-1?0:
				b<2?(x&3)+(y&3)>=4?-1:1:
				b==n-1?(x&3)==0||(x&3)==3?2:-2 :
				b&1?-1:1;
		}else{
			a[x]=
				z==0?0:z&z-1?0:
				b<2?(x&3)==2||(y&3)==2?1:-1:
				b&1?-1:1;
		}
		a[x]*=BIT_popcount((x|y)>>2)&1^(y<x)?-1:1;
	}
	wt(a(m));
}
0