結果

問題 No.2064 Smallest Sequence on Grid
ユーザー rogi52rogi52
提出日時 2022-10-08 16:36:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 385 ms / 3,000 ms
コード長 1,178 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 213,676 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-06-22 19:33:20
合計ジャッジ時間 6,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 19 ms
13,056 KB
testcase_18 AC 17 ms
13,056 KB
testcase_19 AC 17 ms
13,056 KB
testcase_20 AC 260 ms
13,312 KB
testcase_21 AC 303 ms
13,184 KB
testcase_22 AC 191 ms
13,184 KB
testcase_23 AC 189 ms
13,056 KB
testcase_24 AC 194 ms
13,184 KB
testcase_25 AC 202 ms
13,184 KB
testcase_26 AC 385 ms
13,312 KB
testcase_27 AC 357 ms
13,184 KB
testcase_28 AC 18 ms
13,056 KB
testcase_29 AC 305 ms
11,520 KB
testcase_30 AC 17 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int H,W; cin >> H >> W;
    vector<string> S(H);
    rep(i,H) cin >> S[i];

    string T = "";
    T += S[0][0];
    vector<pair<int,int>> can = {{0, 0}};
    while(int(T.size()) < H + W - 1) {
        char mi = 'z';
        vector<pair<int,int>> nt;
        for(auto [x, y] : can) {
            if(x + 1 < H) {
                if(S[x + 1][y] < mi) {
                    mi = S[x + 1][y];
                    nt = {{x + 1, y}};
                } else if(S[x + 1][y] == mi) {
                    nt.push_back({x + 1, y});
                }
            }
            if(y + 1 < W) {
                if(S[x][y + 1] < mi) {
                    mi = S[x][y + 1];
                    nt = {{x, y + 1}};
                } else if(S[x][y + 1] == mi) {
                    nt.push_back({x, y + 1});
                }
            }
        }
        sort(nt.begin(), nt.end());
        nt.erase(unique(nt.begin(), nt.end()), nt.end());
        swap(can, nt);
        T += mi;
    }

    cout << T << endl;
}
0