結果

問題 No.2064 Smallest Sequence on Grid
ユーザー RubikunRubikun
提出日時 2022-09-02 21:25:28
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 732 ms / 3,000 ms
コード長 1,354 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 216,004 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-11-16 02:14:56
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

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