結果

問題 No.2064 Smallest Sequence on Grid
ユーザー Manuel1024Manuel1024
提出日時 2023-09-11 06:58:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,244 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 81,428 KB
実行使用メモリ 814,628 KB
最終ジャッジ日時 2023-09-11 06:58:53
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 MLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main(){
    int h, w; cin >> h >> w;
    vector<string> s(h);
    for(auto &it: s) cin >> it;

    vector<vector<vector<int>>> cnt(h+w, vector<vector<int>>(26));
    cnt[0][s[0][0]-'a'].emplace_back(0);
    vector<vector<int>> pre(h, vector<int>(w, -1));
    for(int phase = 0; phase < h+w-1; phase++){
        for(int x = 0; x < 26; x++){
            if(cnt[phase][x].size() == 0) continue;
            for(auto &it: cnt[phase][x]){
                int i = it/w, j = it%w;
                // cerr << i << " " << j << ", ";
                if(i+1 < h){
                    cnt[phase+1][s[i+1][j]-'a'].emplace_back((i+1)*w+j);
                    pre[i+1][j] = i*w+j;
                }
                if(j+1 < w){
                    cnt[phase+1][s[i][j+1]-'a'].emplace_back(i*w+j+1);
                    pre[i][j+1] = i*w+j;
                }
            }
            // cerr << endl;
            break;
        }
    }

    string ans = "";
    int cur = (h-1)*w+w-1;
    while(cur != -1){
        ans += s[cur/w][cur%w];
        cur = pre[cur/w][cur%w];
    }
    reverse(ans.begin(), ans.end());
    cout << ans << endl;
    return 0;
}
0