結果

問題 No.2064 Smallest Sequence on Grid
ユーザー shojin_proshojin_pro
提出日時 2022-09-02 22:13:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 918 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 88,744 KB
実行使用メモリ 1,419,972 KB
最終ジャッジ日時 2024-11-16 03:54:43
合計ジャッジ時間 74,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 MLE -
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
488,456 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 MLE -
testcase_06 AC 2 ms
13,768 KB
testcase_07 AC 2 ms
13,636 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 MLE -
testcase_10 AC 2 ms
13,636 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 AC 194 ms
39,296 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;
int main(void){
    int H,W;
    cin >> H >> W;
    vector<string> map(H);
    for(int i = 0; i < H; i++){
        cin >> map[i];
    }
    priority_queue<
        pair<string,int>,     
        vector<pair<string,int>>,
        greater<pair<string,int>>
    > que;
    string vv{map[0][0]};
    que.push(make_pair(vv,0));
    while(!que.empty()){
        pair<string,int> v = que.top();
        que.pop();
        //cout << v.first << " " << v.second << endl;
        int h = v.second / 3001;
        int w = v.second % 3001;
        if(h+1 == H && w+1 == W){
            cout << v.first << endl;
            return 0;
        }
        if(w+1 != W){
            que.push(make_pair(string(v.first+map[h][w+1]),v.second+1));
        }
        if(h+1 != H){
            que.push(make_pair(string(v.first+map[h+1][w]),v.second+3001));
        }
        
    }
}
0