結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | koryou |
提出日時 | 2022-09-03 15:17:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,554 bytes |
コンパイル時間 | 977 ms |
コンパイル使用メモリ | 99,872 KB |
実行使用メモリ | 821,488 KB |
最終ジャッジ日時 | 2024-11-17 05:16:16 |
合計ジャッジ時間 | 73,474 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 1 ms
13,640 KB |
testcase_03 | AC | 1 ms
84,364 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
13,640 KB |
testcase_06 | AC | 1 ms
13,632 KB |
testcase_07 | AC | 2 ms
117,356 KB |
testcase_08 | MLE | - |
testcase_09 | AC | 2 ms
13,636 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
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 | 529 ms
12,160 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> #include <cmath> #include <iomanip> #include <string> #include <list> #include <cassert> #include <numeric> #include <cstdint> #include <queue> #include <deque> #include <stack> #include <set> #include <random> #include <bitset> // #include <atcoder/all> using ll = long long; using ld = long double; using namespace std; // using namespace atcoder; using P = pair<ll, ll>; using Graph = vector<vector<int>>; using Priority = priority_queue<ll, vector<ll>, greater<ll>>;// 昇順 using Priority_pair = priority_queue<P, vector<P>, greater<P>>; // using mint_17 = modint1000000007; // using mint = modint998244353; #define mod 1000000007 #define MAX_WIDTH 60 #define MAX_HEIGHT 60 #define INF 1e18 #define MOD 998244353 #define PI 3.141592653589793 #define rep(i, a, b) for(ll i=(a);i<(b);i++) #define rrep(i, a, b) for(ll i=(a);i>=(b);i--) #define fore(i, a) for(auto &i: a) #define all(v) (v).begin(), (v).end() #define YES(a) cout << ((a) ? "YES" : "NO") << endl #define Yes(a) cout << ((a) ? "Yes" : "No") << endl #define pb(a) push_back(a) #define vi vector<int> #define vll vector<ll> #define vs vector<string> #define vc vector<char> #define vp vector<pair<ll, ll>> #define mll map<ll, ll> #define msl map<string, ll> #define COUT(n) cout << (n) << endl #define isInGrid(a, b, h, w) (0 <= (a) && (a) < (h) && 0 <= (b) && (b) < (w)) template<typename T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<typename T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } // int vx[] = {1, 0, -1, 0}, vy[] = {0, 1, 0, -1}; struct edge { ll to, cost; }; ll H, W; char S[3010][3010]; int main() { cin >> H >> W; rep(i,0,H) { rep(j,0,W) { cin >> S[i][j]; } } string ans; ans += S[0][0]; vector<P> p = {P(0,0)}; rep(i,0,H+W-2) { vector<P> nxt; rep(j,0,p.size()) { ll h = p[j].first, w = p[j].second; if(h+1 < H) { nxt.push_back(P(h+1, w)); } if(w+1 < W) { nxt.push_back(P(h, w+1)); } } char mn = 'z'; rep(j,0,nxt.size()) { chmin(mn, S[nxt[j].first][nxt[j].second]); } ans += mn; p.clear(); rep(j,0,nxt.size()) { if(S[nxt[j].first][nxt[j].second] == mn) { p.push_back(nxt[j]); } } } COUT(ans); return 0; }