結果

問題 No.2991 Hypercubic Graph Flow
ユーザー KudeKude
提出日時 2024-12-16 02:14:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-12-16 02:14:46
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 51 ms
58,624 KB
testcase_02 AC 89 ms
77,184 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 226 ms
86,656 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 118 ms
78,592 KB
testcase_07 AC 45 ms
52,224 KB
testcase_08 AC 65 ms
65,280 KB
testcase_09 AC 72 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print('No')
    exit()
n2 = 1 << n
a = [[0] * n2 for _ in range(n2)]
d2 = [
    [0, -1, 1, 0],
    [1, 0, 0, -1],
    [-1, 0, 0, 1],
    [0, 1, -1, 0]
]
d3 = [
    [0,1,1,0,-2,0,0,0],
    [-1,0,0,-1,0,2,0,0],
    [-1,0,0,2,0,0,-1,0],
    [0,1,-2,0,0,0,0,1],
    [2,0,0,0,0,-1,-1,0],
    [0,-2,0,0,1,0,0,1],
    [0,0,1,0,1,0,0,-2],
    [0,0,0,-1,0,-1,2,0]
]
for i in range(n2):
    for j in range(n2):
        if (i ^ j).bit_count() == 1:
            k = (i ^ j).bit_length() - 1
            if n % 2 == 1 and k >= n - 3:
                bi = i >> n - 3
                bj = j >> n - 3
                a[i][j] = d3[bi][bj]
                a[j][i] = -a[i][j]
            else:
                k &= ~1
                bi = i >> k & 3
                bj = j >> k & 3
                a[i][j] = d2[bi][bj]
                a[j][i] = -a[i][j]

for i in range(n2):
    assert sum(a[i]) == 0
    for j in range(n2):
        assert a[i][j] == -a[j][i]
        assert ((i ^ j).bit_count() == 1) == (a[i][j] != 0)
print('Yes')
for ai in a:
    print(*ai)
0