結果

問題 No.2064 Smallest Sequence on Grid
ユーザー みここみここ
提出日時 2022-12-13 19:52:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 333 ms / 3,000 ms
コード長 1,030 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-11-07 14:06:35
合計ジャッジ時間 8,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 183 ms
14,848 KB
testcase_18 AC 185 ms
14,848 KB
testcase_19 AC 185 ms
14,848 KB
testcase_20 AC 279 ms
14,976 KB
testcase_21 AC 291 ms
14,976 KB
testcase_22 AC 239 ms
15,104 KB
testcase_23 AC 258 ms
14,976 KB
testcase_24 AC 259 ms
14,976 KB
testcase_25 AC 258 ms
14,976 KB
testcase_26 AC 333 ms
14,976 KB
testcase_27 AC 328 ms
14,976 KB
testcase_28 AC 183 ms
14,848 KB
testcase_29 AC 277 ms
14,976 KB
testcase_30 AC 169 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef pair<int, int> P;

int main()
{
    int h, w;
    cin >> h >> w;
    string s[3005];
    for(int i = 0; i < h; i++)
    {
        cin >> s[i];
    }
    cout << s[0][0];
    vector<P> v;
    v.push_back(P(0, 0));
    for(int i = 1; i < h + w - 1; i++)
    {
        char l = 'z';
        for(auto [x, y] : v)
        {
            if(x < h - 1)
            {
                l = min(l, s[x + 1][y]);
            }
            if(y < w - 1)
            {
                l = min(l, s[x][y + 1]);
            }
        }
        cout << l;
        vector<P> z;
        for(auto [x, y] : v)
        {
            if(x < h - 1 && s[x + 1][y] == l && (z.empty() || z.back().second != y))
            {
                z.push_back(P(x + 1, y));
            }
            if(y < w - 1 && s[x][y + 1] == l && (z.empty() || z.back().first != x))
            {
                z.push_back(P(x, y + 1));
            }
        }
        swap(v, z);
    }
    cout << endl;
}
0