結果

問題 No.2064 Smallest Sequence on Grid
ユーザー simansiman
提出日時 2022-09-06 15:54:02
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
(最新)
MLE  
(最初)
実行時間 -
コード長 1,359 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 144,064 KB
実行使用メモリ 378,136 KB
最終ジャッジ日時 2024-11-21 17:03:43
合計ジャッジ時間 82,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int y;
  int x;
  char ch;

  Node(int y = -1, int x = -1, char ch = -1) {
    this->y = y;
    this->x = x;
    this->ch = ch;
  }

  bool operator>(const Node &n) const {
    return ch > n.ch;
  }
};

int main() {
  int H, W;
  cin >> H >> W;

  vector<string> S(H);
  for (int y = 0; y < H; ++y) {
    cin >> S[y];
  }

  queue<Node> que;
  que.push(Node(0, 0, S[0][0]));

  int history[H][W];
  memset(history, -1, sizeof(history));
  string ans = "";
  ans += S[0][0];

  for (int i = 0; i < H + W - 2; ++i) {
    priority_queue <Node, vector<Node>, greater<Node>> pque;

    while (not que.empty()) {
      Node node = que.front();
      que.pop();

      if (node.y + 1 < H) {
        pque.push(Node(node.y + 1, node.x, S[node.y + 1][node.x]));
      }
      if (node.x + 1 < W) {
        pque.push(Node(node.y, node.x + 1, S[node.y][node.x + 1]));
      }
    }

    char ch = pque.top().ch;
    ans += ch;

    while (not pque.empty()) {
      Node node = pque.top();
      pque.pop();

      if (node.ch > ch) break;

      que.push(node);
    }
  }

  cout << ans << endl;

  return 0;
}
0