結果
問題 | No.506 限られたジャパリまん |
ユーザー | ldsyb |
提出日時 | 2017-04-22 00:13:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 991 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 71,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 04:14:29 |
合計ジャッジ時間 | 1,708 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; using ll = long long; int bitcount(int a){ int r = 0; while(a){ a -= a & -a; r++; } return r; } int main(){ int h, w, k, p, ans = -1, maxi = -1; cin >> h >> w >> k >> p; int x[k], y[k]; string n[k]; for(int i = 0; i < k; i++) cin >> x[i] >> y[i] >> n[i]; for(int puni = 0; puni < 1 << k; puni++){ if(p < bitcount(puni)) continue; ll dp[h + 1][w + 1]; fill(dp[0], dp[h + 1], -1); for(int i = 0; i < h + 1; i++) dp[i][0] = 1; for(int i = 0; i < w + 1; i++) dp[0][i] = 1; for(int i = 0; i < k; i++) if(!(puni >> i & 1)) dp[x[i]][y[i]] = 0; for(int i = 1; i < h + 1; i++) for(int j = 1; j < w + 1; j++) if(dp[i][j]){ dp[i][j] = max(dp[i][j], dp[i - 1][j] + dp[i][j - 1]); } if(maxi < dp[h][w]){ maxi = dp[h][w]; ans = puni; } } if(maxi == -1){ cout << 0 << endl; return 0; } cout << maxi % ll(1e9 + 7) << endl; for(int i = 0; i < k; i++) if(ans >> i & 1) cout << n[i] << endl; }