結果

問題 No.2064 Smallest Sequence on Grid
ユーザー RubikunRubikun
提出日時 2022-09-02 21:25:28
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 724 ms / 3,000 ms
コード長 1,354 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 212,916 KB
実行使用メモリ 13,272 KB
最終ジャッジ日時 2023-08-10 03:14:41
合計ジャッジ時間 9,258 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 19 ms
12,876 KB
testcase_18 AC 19 ms
12,864 KB
testcase_19 AC 18 ms
12,788 KB
testcase_20 AC 503 ms
13,176 KB
testcase_21 AC 553 ms
13,264 KB
testcase_22 AC 356 ms
13,192 KB
testcase_23 AC 373 ms
13,196 KB
testcase_24 AC 371 ms
13,272 KB
testcase_25 AC 373 ms
13,148 KB
testcase_26 AC 724 ms
13,168 KB
testcase_27 AC 721 ms
13,180 KB
testcase_28 AC 18 ms
12,788 KB
testcase_29 AC 598 ms
11,480 KB
testcase_30 AC 17 ms
11,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int H,W;cin>>H>>W;
    vector<string> S(H);
    for(int i=0;i<H;i++) cin>>S[i];
    string res;
    vector<pair<int,int>> cand;
    
    res+=S[0][0];
    cand.push_back(mp(0,0));
    
    for(int t=0;t<H+W-2;t++){
        vector<pair<int,int>> nex;
        vector<pair<char,pair<int,int>>> X;
        for(auto [h,w]:cand){
            if(h+1<H){
                X.push_back(mp(S[h+1][w],mp(h+1,w)));
            }
            if(w+1<W){
                X.push_back(mp(S[h][w+1],mp(h,w+1)));
            }
        }
        sort(all(X));
        X.erase(unique(all(X)),X.end());
        
        cand.clear();
        res+=X[0].fi;
        for(int i=0;i<si(X);i++){
            if(X[i].fi!=X[0].fi) break;
            cand.push_back(X[i].se);
        }
    }
    
    cout<<res<<endl;
}
0