結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | Carpenters-Cat |
提出日時 | 2022-09-02 22:19:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 208,460 KB |
実行使用メモリ | 958,188 KB |
最終ジャッジ日時 | 2024-11-16 04:11:33 |
合計ジャッジ時間 | 59,526 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
13,640 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 2 ms
88,084 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | TLE | - |
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 | 485 ms
12,308 KB |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using P = pair<int, int>; int main () { int H, W; cin >> H >> W; char A[3030][3030]; for (int i = 0; i < H; i ++) { for (int j = 0; j < W; j ++) { cin >> A[i][j]; } } for (int i = 0; i < H; i ++) { A[i][W] = '{'; } for (int j = 0; j < W; j ++) { A[H][j] = '{'; } vector<P> now = {P{0, 0}}; cout << A[0][0]; string key = "abcdefghijklmnopqrstuvwxyz"; for (int i = 2; i < H + W; i ++) { std::vector<P> X[50]; for (auto [x, y] : now) { X[A[x + 1][y] - 'a'].emplace_back(x + 1, y); X[A[x][y + 1] - 'a'].emplace_back(x, y + 1); } int fl = 0; while (X[fl].empty()) { fl ++; } cout << key[fl]; now.clear(); for (auto x : X[fl]) { now.push_back(x); } } cout << endl; }