結果

問題 No.2064 Smallest Sequence on Grid
ユーザー erbowlerbowl
提出日時 2022-09-04 16:21:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,010 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 216,456 KB
実行使用メモリ 718,208 KB
最終ジャッジ日時 2024-04-29 16:45:35
合計ジャッジ時間 21,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 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 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 259 ms
156,440 KB
testcase_18 AC 265 ms
156,416 KB
testcase_19 AC 266 ms
156,436 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 1,357 ms
455,808 KB
testcase_23 AC 1,325 ms
437,504 KB
testcase_24 AC 1,333 ms
437,504 KB
testcase_25 AC 1,321 ms
437,536 KB
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 271 ms
156,672 KB
testcase_29 MLE -
testcase_30 AC 247 ms
143,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long 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<vector<pair<ll,ll>>> prev(h,vector<pair<ll,ll>>(w,{-1,-1}));
    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;
}
0