結果
問題 | No.753 最強王者決定戦 |
ユーザー | ikd |
提出日時 | 2018-12-02 17:28:16 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 455 ms / 1,000 ms |
コード長 | 1,318 bytes |
コンパイル時間 | 3,531 ms |
コンパイル使用メモリ | 66,432 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-01 05:24:20 |
合計ジャッジ時間 | 6,062 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 452 ms
11,264 KB |
testcase_01 | AC | 455 ms
11,264 KB |
testcase_02 | AC | 450 ms
11,136 KB |
testcase_03 | AC | 453 ms
11,136 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import strutils, sequtils, algorithm proc popcnt(n: int): int = result = (n and 0x55555555) + (n shr 1 and 0x55555555) result = (result and 0x33333333) + (result shr 2 and 0x33333333) result = (result and 0x0f0f0f0f) + (result shr 4 and 0x0f0f0f0f) result = (result and 0x00ff00ff) + (result shr 8 and 0x00ff00ff) result = (result and 0x0000ffff) + (result shr 16 and 0x0000ffff) proc ispow2(n: int): bool = result = false for i in 0..4: if n==(1 shl i): result = true proc main() = let n = 16 a = (0..<n).mapIt(stdin.readLine.split.map(parseInt)) var dp = newSeqWith(n, newSeq[int64](1 shl n)) for i in 0..<n: dp[i][1 shl i] = 1 for bit in 0..<(1 shl n): let par_size = popcnt(bit) if ispow2(par_size): var sub = bit while sub>0: if popcnt(sub)==(par_size div 2): let sub2 = bit xor sub for i in 0..<n: if ((sub shr i) and 1)==1: for j in 0..<n: if ((sub2 shr j) and 1)==1: let w = if i<j: a[i][j] else: -a[j][i] if w == 1: dp[i][bit]+=dp[i][sub]*dp[j][sub2] elif w == -1: dp[j][bit]+=dp[i][sub]*dp[j][sub2] sub = (sub-1) and bit for i in 0..<n: echo dp[i][(1 shl n)-1] main()