結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | erbowl |
提出日時 | 2022-09-04 16:22:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,085 ms / 3,000 ms |
コード長 | 932 bytes |
コンパイル時間 | 2,265 ms |
コンパイル使用メモリ | 213,496 KB |
実行使用メモリ | 436,808 KB |
最終ジャッジ日時 | 2024-11-18 22:13:57 |
合計ジャッジ時間 | 19,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 3 ms
6,816 KB |
testcase_17 | AC | 186 ms
15,544 KB |
testcase_18 | AC | 187 ms
15,488 KB |
testcase_19 | AC | 184 ms
15,496 KB |
testcase_20 | AC | 1,523 ms
322,064 KB |
testcase_21 | AC | 1,708 ms
347,904 KB |
testcase_22 | AC | 1,158 ms
240,024 KB |
testcase_23 | AC | 1,121 ms
226,304 KB |
testcase_24 | AC | 1,118 ms
226,304 KB |
testcase_25 | AC | 1,114 ms
226,328 KB |
testcase_26 | AC | 2,076 ms
436,808 KB |
testcase_27 | AC | 2,085 ms
436,756 KB |
testcase_28 | AC | 188 ms
15,616 KB |
testcase_29 | AC | 1,745 ms
369,640 KB |
testcase_30 | AC | 173 ms
15,044 KB |
ソースコード
typedef int ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; #define int long long signed main(){ ll h,w; std::cin >> h>>w; vector<string> s(h); for (int i = 0; i < h; i++) { std::cin >> s[i]; } vector<set<pair<ll,ll>>> kou(h+w+3); kou[0].insert({0,0}); string ans = ""; for (int i = 0; i < h+w-1; i++) { ll minc = 1000; for (auto e : kou[i]) { minc = min(minc, (ll)s[e.first][e.second]); } // std::cout << minc << std::endl; ans.push_back(minc); for (auto e : kou[i]) { if(s[e.first][e.second]==minc){ if(e.first+1<h){ kou[i+1].insert({e.first+1,e.second}); } if(e.second+1<w){ kou[i+1].insert({e.first,e.second+1}); } } } } std::cout << ans << std::endl; }