結果

問題 No.2064 Smallest Sequence on Grid
ユーザー nononnonon
提出日時 2024-09-12 13:46:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,377 ms / 3,000 ms
コード長 804 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 210,924 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-09-12 13:46:28
合計ジャッジ時間 15,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 130 ms
13,056 KB
testcase_18 AC 62 ms
13,056 KB
testcase_19 AC 47 ms
13,056 KB
testcase_20 AC 1,042 ms
13,312 KB
testcase_21 AC 1,119 ms
13,440 KB
testcase_22 AC 722 ms
13,312 KB
testcase_23 AC 672 ms
13,312 KB
testcase_24 AC 687 ms
13,440 KB
testcase_25 AC 688 ms
13,440 KB
testcase_26 AC 1,377 ms
13,568 KB
testcase_27 AC 1,364 ms
13,440 KB
testcase_28 AC 20 ms
13,056 KB
testcase_29 AC 1,126 ms
11,776 KB
testcase_30 AC 18 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int H,W;
    cin>>H>>W;
    vector<string>S(H);
    for(int i=0;i<H;i++)cin>>S[i];
    set<pair<int,int>>cand;
    cand.insert(make_pair(0,0));
    string T(1,S[0][0]);
    for(int t=0;t<H+W-2;t++)
    {
        char min_char='z';
        for(auto[r,c]:cand)
        {
            if(r+1<H)min_char=min(min_char,S[r+1][c]);
            if(c+1<W)min_char=min(min_char,S[r][c+1]);
        }
        T.push_back(min_char);
        set<pair<int,int>>tmp;
        for(auto[r,c]:cand)
        {
            if(r+1<H&&S[r+1][c]==min_char)tmp.insert(make_pair(r+1,c));
            if(c+1<W&&S[r][c+1]==min_char)tmp.insert(make_pair(r,c+1));
        }
        cand=tmp;
    }
    cout<<T<<endl;
}
0