結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | yansi819 |
提出日時 | 2024-04-13 17:31:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 855 bytes |
コンパイル時間 | 4,017 ms |
コンパイル使用メモリ | 269,008 KB |
実行使用メモリ | 818,268 KB |
最終ジャッジ日時 | 2024-10-03 00:18:26 |
合計ジャッジ時間 | 10,361 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | MLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; int main() { int H, W; cin >> H >> W; vector<string> S(H); for (int i = 0; i < H; i++) cin >> S[i]; string ans = string(H * W - 1, 'z'); queue<pair<int, string>> que; string s = string(1, S[0][0]); que.push({0, s}); int dx[2] = {1, 0}; int dy[2] = {0, 1}; while (!que.empty()) { auto &[id, t] = que.front(); que.pop(); int x = id / W; int y = id % W; if (x == H - 1 && y == W - 1) { ans = min(ans, t); continue; } for (int i = 0; i < 2; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (nx >= H || ny >= W) continue; que.push({nx * W + ny, t + S[nx][ny]}); } } cout << ans << endl; return 0; }