結果
問題 | No.506 限られたジャパリまん |
ユーザー | ukuku09 |
提出日時 | 2017-04-21 23:08:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 161,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 04:12:04 |
合計ジャッジ時間 | 5,816 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 112 ms
6,940 KB |
testcase_09 | AC | 28 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 77 ms
6,940 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 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define all(v) begin(v), end(v) #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define reps(i, s, n) for(int i = (int)(s); i < (int)(n); i++) template<class T1, class T2> void chmin(T1 &a, T2 b){if(a>b)a=b;} template<class T1, class T2> void chmax(T1 &a, T2 b){if(a<b)a=b;} using pint = pair<int, int>; using tint = tuple<int, int, int>; using vint = vector<int>; const int inf = 1LL << 55; const int mod = 1e9 + 7; int H, W, K, P; int x[20], y[20]; string n[20]; int mas[33][33]; int dx[] = {1, 0}; int dy[] = {0, 1}; int dp[33][33]; int solve(int mx, int my, int bit) { if(mx == H && my == W) return 1; if(mx < 0 || H < mx || my < 0 || W < my) return 0; int& res = dp[mx][my]; if(~res) return res; res = 0; rep(i, 2) { int nx = mx + dx[i], ny = my + dy[i]; int id = mas[ny][nx]; if(id == -1 || (bit>>id)&1) { (res += solve(nx, ny, bit)) %= mod; } } return res; } signed main() { cin.tie(0); ios_base::sync_with_stdio(0); cout << fixed << setprecision(12); cin >> H >> W >> K >> P; memset(mas, -1, sizeof(mas)); rep(i, K) { cin >> x[i] >> y[i] >> n[i]; mas[y[i]][x[i]] = i; } int ans = 0, bit = 0; rep(i, 1<<K) { if(__builtin_popcount(i) > P) continue; memset(dp, -1, sizeof(dp)); int temp = solve(0, 0, i); if(temp > ans) { ans = temp; bit = i; } } cout << ans << endl; rep(i, K) { if((bit>>i)&1) cout << n[i] << endl; } return 0; }