結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | atjh16 |
提出日時 | 2022-09-20 11:02:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 2,841 ms |
コンパイル使用メモリ | 212,080 KB |
実行使用メモリ | 818,048 KB |
最終ジャッジ日時 | 2024-12-22 03:25:49 |
合計ジャッジ時間 | 35,583 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | AC | 6 ms
5,248 KB |
testcase_15 | AC | 5 ms
5,248 KB |
testcase_16 | AC | 5 ms
5,248 KB |
testcase_17 | AC | 254 ms
52,992 KB |
testcase_18 | AC | 254 ms
52,480 KB |
testcase_19 | AC | 249 ms
52,224 KB |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 286 ms
47,360 KB |
testcase_29 | TLE | - |
testcase_30 | AC | 280 ms
65,408 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int h, w; string s[3000]; set<pair<string, int>> t[6000]; int main() { cin >> h >> w; for (int i = 0; i < h; i++) cin >> s[i]; t[0].insert({ s[0].substr(0, 1), 0}); for (int k = 0; k < h + w - 2; k++) { if (!t[k].empty()) { string u = t[k].begin()->first; for (auto j : t[k]) { if (j.first != u) break; int i = j.second; if (i < h - 1) { string v = u; v.push_back(s[i + 1][k - i]); t[k + 1].insert({ v, i + 1 }); } if (k - i < w - 1) { string v = u; v.push_back(s[i][k - i + 1]); t[k + 1].insert({ v, i }); } } } } cout << t[h + w - 2].begin()->first << endl; }