結果

問題 No.1937 Various Tournament
ユーザー googol_S0googol_S0
提出日時 2022-05-13 21:34:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,276 KB
最終ジャッジ日時 2024-07-22 01:08:01
合計ジャッジ時間 17,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 393 ms
90,880 KB
testcase_02 AC 468 ms
90,988 KB
testcase_03 AC 459 ms
91,008 KB
testcase_04 AC 456 ms
91,008 KB
testcase_05 AC 51 ms
62,336 KB
testcase_06 AC 477 ms
90,844 KB
testcase_07 AC 471 ms
90,752 KB
testcase_08 AC 49 ms
62,592 KB
testcase_09 AC 490 ms
91,044 KB
testcase_10 AC 52 ms
62,848 KB
testcase_11 AC 444 ms
91,008 KB
testcase_12 AC 488 ms
91,008 KB
testcase_13 AC 457 ms
90,752 KB
testcase_14 AC 475 ms
91,008 KB
testcase_15 AC 469 ms
91,008 KB
testcase_16 AC 478 ms
91,008 KB
testcase_17 AC 469 ms
90,752 KB
testcase_18 AC 492 ms
90,752 KB
testcase_19 AC 480 ms
90,752 KB
testcase_20 AC 50 ms
62,848 KB
testcase_21 AC 39 ms
52,608 KB
testcase_22 AC 458 ms
91,276 KB
testcase_23 AC 474 ms
91,008 KB
testcase_24 AC 459 ms
90,880 KB
testcase_25 AC 52 ms
62,592 KB
testcase_26 AC 474 ms
90,752 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 452 ms
90,880 KB
testcase_29 AC 51 ms
62,208 KB
testcase_30 AC 485 ms
91,264 KB
testcase_31 AC 463 ms
91,008 KB
testcase_32 AC 489 ms
90,752 KB
testcase_33 AC 485 ms
90,624 KB
testcase_34 AC 474 ms
91,204 KB
testcase_35 AC 465 ms
90,624 KB
testcase_36 AC 473 ms
91,092 KB
testcase_37 AC 53 ms
63,488 KB
testcase_38 AC 49 ms
62,592 KB
testcase_39 AC 464 ms
91,220 KB
testcase_40 AC 52 ms
62,720 KB
testcase_41 AC 51 ms
62,336 KB
testcase_42 AC 479 ms
90,880 KB
testcase_43 AC 53 ms
63,360 KB
testcase_44 AC 40 ms
51,712 KB
testcase_45 AC 477 ms
90,880 KB
testcase_46 AC 51 ms
62,208 KB
testcase_47 AC 39 ms
51,968 KB
testcase_48 AC 40 ms
52,096 KB
testcase_49 AC 50 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[list(map(int,input().split())) for i in range(N)]
M=1<<N
DP=[[0]*N for i in range(M)]
F=[0]*M
B=[bin(i).count('1') for i in range(M)]
def f(X):
  if F[X]:
    return DP[X][:]
  if (X&(-X))==X:
    DP[X][X.bit_length()-1]=1
    F[X]=1
    return DP[X][:]
  v=0
  while 1:
    v=(v-1)&X
    if B[v]==B[v^X]:
      a,b=f(v),f(v^X)
      for i in range(N):
        if a[i]:
          for j in range(N):
            if b[j]:
              if S[i][j]:
                DP[X][i]+=a[i]*b[j]
              else:
                DP[X][j]+=a[i]*b[j]
    if v==0:
      break
  F[X]=1
  return DP[X][:]

f(M-1)
for i in range(N):
  print(DP[M-1][i])
0