結果

問題 No.2064 Smallest Sequence on Grid
ユーザー やうやう
提出日時 2022-09-02 22:18:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,464 ms / 3,000 ms
コード長 1,005 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 181,164 KB
実行使用メモリ 460,760 KB
最終ジャッジ日時 2024-11-16 04:08:07
合計ジャッジ時間 23,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 498 ms
39,040 KB
testcase_18 AC 500 ms
39,108 KB
testcase_19 AC 505 ms
39,040 KB
testcase_20 AC 1,933 ms
343,680 KB
testcase_21 AC 2,029 ms
370,592 KB
testcase_22 AC 1,507 ms
261,504 KB
testcase_23 AC 1,523 ms
249,984 KB
testcase_24 AC 1,471 ms
250,036 KB
testcase_25 AC 1,470 ms
249,984 KB
testcase_26 AC 2,454 ms
460,692 KB
testcase_27 AC 2,464 ms
460,760 KB
testcase_28 AC 496 ms
39,228 KB
testcase_29 AC 2,108 ms
387,932 KB
testcase_30 AC 455 ms
36,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<int,int>;
using V=vector<int>;
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,n) for(int i=1;i<=n;i++)

int main(){
    int h,w;
    cin >> h >> w;
    vector<V> a(h,V(w));
    rep(i,h) rep(j,w){
        char c;
        cin >> c;
        a[i][j]=c-'a';
    }

    string t; t+=(char)('a'+a[0][0]);
    vector<set<P>> s(h+w-1);
    s[0].insert(P(0,0));
    rep(l,h+w-2){
        int c=100;
        for(auto i=s[l].begin();i!=s[l].end();++i){
            P p=*i;
            int x=p.first,y=p.second;
            if(x+1<h) c=min(c,a[x+1][y]);
            if(y+1<w) c=min(c,a[x][y+1]);
        }
        for(auto i=s[l].begin();i!=s[l].end();++i){
            P p=*i;
            int x=p.first,y=p.second;
            if(x+1<h) if(a[x+1][y]==c) s[l+1].insert(P(x+1,y));
            if(y+1<w) if(a[x][y+1]==c) s[l+1].insert(P(x,y+1));
        }
        t+=(char)('a'+c);
    }

    cout << t << endl;

}
0