結果
| 問題 |
No.2064 Smallest Sequence on Grid
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-04 16:22:43 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2,224 ms / 3,000 ms |
| コード長 | 932 bytes |
| コンパイル時間 | 2,096 ms |
| コンパイル使用メモリ | 204,004 KB |
| 最終ジャッジ日時 | 2025-02-07 02:42:09 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 |
ソースコード
typedef int ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
ll h,w;
std::cin >> h>>w;
vector<string> s(h);
for (int i = 0; i < h; i++) {
std::cin >> s[i];
}
vector<set<pair<ll,ll>>> kou(h+w+3);
kou[0].insert({0,0});
string ans = "";
for (int i = 0; i < h+w-1; i++) {
ll minc = 1000;
for (auto e : kou[i]) {
minc = min(minc, (ll)s[e.first][e.second]);
}
// std::cout << minc << std::endl;
ans.push_back(minc);
for (auto e : kou[i]) {
if(s[e.first][e.second]==minc){
if(e.first+1<h){
kou[i+1].insert({e.first+1,e.second});
}
if(e.second+1<w){
kou[i+1].insert({e.first,e.second+1});
}
}
}
}
std::cout << ans << std::endl;
}