結果

問題 No.2064 Smallest Sequence on Grid
ユーザー rogi52rogi52
提出日時 2022-10-08 16:36:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

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