結果

問題 No.2064 Smallest Sequence on Grid
ユーザー kyo1kyo1
提出日時 2022-09-02 21:44:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 776 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 208,928 KB
実行使用メモリ 917,580 KB
最終ジャッジ日時 2024-11-16 02:57:11
合計ジャッジ時間 60,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int H, W;
  cin >> H >> W;
  vector<string> S(H);
  for (auto &&e : S) {
    cin >> e;
  }
  string res = "";
  res += S[0][0];
  vector<pair<int, int>> X;
  X.emplace_back(0, 0);
  for (int i = 0; i < H + W - 2; i++) {
    char c = 'z';
    for (const auto &[y, x] : X) {
      if (y + 1 < H && c > S[y + 1][x]) c = S[y + 1][x];
      if (x + 1 < W && c > S[y][x + 1]) c = S[y][x + 1];
    }
    vector<pair<int, int>> Y;
    for (const auto &[y, x] : X) {
      if (y + 1 < H && c == S[y + 1][x]) Y.emplace_back(y + 1, x);
      if (x + 1 < W && c == S[y][x + 1]) Y.emplace_back(y, x + 1);
    }
    res += c;
    swap(X, Y);
  }
  cout << res << '\n';
  return 0;
}
0