結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-05 19:36:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,134 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 124,544 KB |
実行使用メモリ | 496,728 KB |
最終ジャッジ日時 | 2024-05-02 13:50:00 |
合計ジャッジ時間 | 9,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | TLE | - |
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 <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; int main(){ int H, W, h, w, nh, nw; char mc; string ans=""; cin >> H >> W; vector<string> S(H); int dx[2] = {1, 0}; int dy[2] = {0, 1}; vector<pair<int, int>> v; for (int i=0; i < H; i++) cin >> S[i]; ans += S[0][0]; v.push_back({0, 0}); for (int i=1; i<H+W-1; i++){ vector<tuple<char, int, int>> c; for (auto [h, w] : v){ for (int dir=0; dir < 2; dir++){ nh = h + dx[dir]; nw = w + dy[dir]; if (nh < 0 || nh >= H || nw < 0 || nw >= W) continue; c.push_back({S[nh][nw], nh, nw}); } } v.clear(); sort(c.begin(), c.end()); tie(mc, h, w) = c[0]; ans += mc; for (auto [cc, h, w] : c){ if (cc == mc) v.push_back({h, w}); } } cout << ans << endl; return 0; }