結果
問題 | No.506 限られたジャパリまん |
ユーザー | nebukuro09 |
提出日時 | 2017-04-21 22:40:46 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,434 bytes |
コンパイル時間 | 2,950 ms |
コンパイル使用メモリ | 123,280 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 04:08:54 |
合計ジャッジ時間 | 3,958 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 31 ms
6,940 KB |
testcase_09 | AC | 18 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 21 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; immutable int MOD = 10^^9+7; alias Tuple!(int, "r", int, "c", string, "name") Friend; void main() { auto s = readln.split.map!(to!int); auto H = s[0]; auto W = s[1]; auto K = s[2]; auto P = s[3]; auto F = new Friend[](K); foreach (i; 0..K) { auto t = readln.split; F[i] = Friend(t[0].to!int, t[1].to!int, t[2]); } int maxval = 0; int maxf = 0; foreach (i; 0..2^^K) { if (i.popcnt != P) continue; auto B = new bool[][](H+1, W+1); foreach (j; 0..K) { if (!(i & (1 << j))) { B[F[j].r][F[j].c] = true; } } auto dp = new int[][](H+1, W+1); dp[0][0] = 1; foreach (r; 0..H+1) { foreach (c; 0..W+1) { if (B[r][c]) continue; if (r > 0) dp[r][c] = (dp[r][c] + dp[r-1][c]) % MOD; if (c > 0) dp[r][c] = (dp[r][c] + dp[r][c-1]) % MOD; } } if (dp[H][W] > maxval) { maxval = dp[H][W]; maxf = i; } } if (maxval == 0) { writeln(0); } else { writeln(maxval); foreach (i; 0..K) { if (maxf & (1 << i)) writeln(F[i].name); } } }