結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | qqspeed20015 |
提出日時 | 2022-09-02 22:44:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 1,572 ms |
コンパイル使用メモリ | 170,140 KB |
実行使用メモリ | 74,112 KB |
最終ジャッジ日時 | 2024-11-16 05:04:20 |
合計ジャッジ時間 | 6,867 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
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 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 244 ms
73,984 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 204 ms
62,720 KB |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n, m; scanf("%d %d", &n, &m); pair<int,char> dp[n + 1][m + 1]; string s; for (int i = 0; i < n; i++) { cin >> s; cin.ignore(); for(int j = 0; j < m; j++) dp[i][j].second = s[j]; } for (int i = 0; i <= m; i++) dp[n][i] = {INT_MAX, 'z' + 1}; for (int i = 0; i <= n; i++) dp[i][m] = {INT_MAX, 'z' + 1}; dp[n][m - 1].first = dp[n - 1][m].first = 0; for (int i = n - 1; i >= 0; i--) for (int j = m - 1; j >= 0; j--) dp[i][j].first = 1 + min(dp[i + 1][j].first, dp[i][j + 1].first); string ans = ""; ans.push_back(dp[0][0].second); int i = 0,j = 0; while (i < n - 1 || j < m - 1) { if (dp[i][j + 1] < dp[i + 1][j]) { ans.push_back(dp[i][j + 1].second); j++; } else { ans.push_back(dp[i + 1][j].second); i++; } } cout << ans; return 0; }