結果
問題 | No.506 限られたジャパリまん |
ユーザー | Konton7 |
提出日時 | 2020-02-06 16:35:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,035 bytes |
コンパイル時間 | 2,750 ms |
コンパイル使用メモリ | 211,492 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 04:23:08 |
合計ジャッジ時間 | 21,214 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 1,738 ms
5,376 KB |
testcase_06 | WA | - |
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 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,737 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using PII = std::pair<int, int>; using PLL = std::pair<ll, ll>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) const int mod = 1e9 + 7; int h, w, k, p, k2; vector<vector<int>> field, friendsxy; vector<vector<ll>> dp; void makedptable() { dp.resize(h + 1); rep(i, h + 1) { dp[i].resize(w + 1); rep(j, w + 1) { dp[i][j] = 1; } } } ll bfs(int x) { ll ret = 0; int c, y, bits[k]; y = x; c = k; rep(i, k2) { if (y % 2 == 1) { c--; dp[friendsxy[i][0]][friendsxy[i][1]] = 0; } y /= 2; } if (c == p) { rep(i, h) dp[i + 1][0] = dp[i + 1][0] * dp[i][0]; rep(i, w) dp[0][i + 1] = dp[0][i + 1] * dp[0][i]; rep(i, h) rep(j, w) dp[i + 1][j + 1] = (dp[i + 1][j + 1] > 0) * (dp[i][j + 1] + dp[i + 1][j]); ret = dp[h][w]; } return ret; } int main() { #ifdef DEBUG cout << "DEBUG MODE" << endl; ifstream in("input.txt"); //for debug cin.rdbuf(in.rdbuf()); //for debug #endif int y, x; PLL ans; ll d; string name; cin >> w >> h >> k >> p; field.resize(h + 1); string friends[k]; friendsxy.resize(k); ans.first = 0, ans.second = 0; k2 = pow(2, k); makedptable(); rep(i, k) { cin >> x >> y >> name; friends[i] = name; friendsxy[i].push_back(y), friendsxy[i].push_back(x); } rep(i, k2) { d = bfs(i); if (ans.first < d) { ans.first = d; ans.second = i; } } cout << ans.first % mod << endl; if (ans.first != 0) { d = ans.second; rep(i, k) { if (d % 2 == 0) cout << friends[i] << endl; d /= 2; } } return 0; }