結果

問題 No.2064 Smallest Sequence on Grid
ユーザー T101010101T101010101
提出日時 2023-03-08 01:08:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,770 bytes
コンパイル時間 3,596 ms
コンパイル使用メモリ 238,848 KB
実行使用メモリ 649,996 KB
最終ジャッジ日時 2023-10-18 05:44:58
合計ジャッジ時間 30,513 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 3 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 3 ms
4,348 KB
testcase_14 AC 3 ms
4,348 KB
testcase_15 AC 3 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros

#pragma GCC target("avx,avx2,fma")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
// #pragma GCC target("avx,avx2,fma,sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,tune=native")

// #include <bits/extc++.h>
#include <bits/stdc++.h>
using namespace std;
// using namespace __gnu_pbds;
// using namespace __gnu_cxx;
// #include <atcoder/fenwicktree>
// #include <atcoder/segtree>
// #include <atcoder/maxflow>
// #include <atcoder/all>
// using namespace atcoder;

// #include <boost/multiprecision/cpp_int.hpp>
// namespace mp = boost::multiprecision;
// using Bint = mp::cpp_int;

#define TO_STRING(var) # var
#define pb emplace_back
// #define int ll
#define endl '\n'

using ll = long long;
using ld = long double;
const ld PI = acos(-1);
const ld EPS = 1e-10;
const ll INFL = 1LL << 61;
const int MOD = 998244353;
// const int MOD = 1000000007;

__attribute__((constructor))
void constructor() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
}

#pragma endregion

signed main() {
    int H, W;
    cin >> H >> W;
    vector<vector<char>> S(H, vector<char>(W));
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cin >> S[i][j];
        }
    }

    vector<char> ans(H + W - 1, 123);
    vector<vector<vector<bool>>> flag(H, vector<vector<bool>>(W, vector<bool>(2)));

    ans[0] = S[0][0];

    queue<vector<int>> qu;
    vector<int> A(3);
    qu.push(A);

    while (!qu.empty()) {
        auto V = qu.front();
        qu.pop();
        int i = V[0];
        int j = V[1];
        int k = V[2];

        if (i && k == 0 && S[i - 1][j] != ans[i + j - 1]) continue;
        if (j && k == 1 && S[i][j - 1] != ans[i + j - 1]) continue;

        char c = 'z';
        if (S[i][j] < ans[i + j]) {
            ans[i + j] = S[i][j];
            if (i + 1 < H && !flag[i + 1][j][0]) {
                flag[i + 1][j][0] = true;
                qu.emplace(vector<int>{i + 1, j, 0});
                c = S[i + 1][j];
            }
            if (j + 1 < W && !flag[i][j + 1][1]) {
                flag[i][j + 1][1] = true;
                qu.emplace(vector<int>{i, j + 1, 1});
                c = S[i][j + 1];
            }
        }
        if (S[i][j] == ans[i + j]) {
            if (i + 1 < H && !flag[i + 1][j][0] && S[i + 1][j] <= c) {
                flag[i + 1][j][0] = true;
                qu.emplace(vector<int>{i + 1, j, 0});
                c = min(c, S[i + 1][j]);
            }
            if (j + 1 < W && !flag[i][j + 1][1] && S[i][j + 1] <= c) {
                flag[i][j + 1][1] = true;
                qu.emplace(vector<int>{i, j + 1, 1});
                c = min(c, S[i][j + 1]);
            }
        }
    }
    for (auto &x : ans) {
        cout << x;
    }
    cout << endl;
}
0