結果

問題 No.2064 Smallest Sequence on Grid
ユーザー umezoumezo
提出日時 2022-09-02 23:01:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 942 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 213,868 KB
実行使用メモリ 323,228 KB
最終ジャッジ日時 2024-11-16 05:38:36
合計ジャッジ時間 80,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
256,892 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
301,120 KB
testcase_04 AC 2 ms
13,772 KB
testcase_05 AC 2 ms
13,640 KB
testcase_06 AC 1 ms
13,636 KB
testcase_07 AC 2 ms
276,244 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
276,236 KB
testcase_10 AC 2 ms
13,632 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 20 ms
19,876 KB
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

using pci=pair<char,pair<int,int>>;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int h,w;
  cin>>h>>w;
  vector<string> S(h);
  rep(i,h) cin>>S[i];
  
  string ans;
  ans+=S[0][0];
  queue<pair<int,int>> que;
  que.push({0,0});
  rep(k,h+w-2){
    priority_queue<pci, vector<pci>, greater<pci>> pq;
    while(que.size()){
      auto c=que.front(); que.pop();
      int i=c.first,j=c.second;
      if(i+1<h) pq.push({S[i+1][j],{i+1,j}});
      if(j+1<w) pq.push({S[i][j+1],{i,j+1}});
    }
    auto a=pq.top(); pq.pop();
    ans+=a.first;
    que.push({a.second.first,a.second.second});
    while(pq.size() && pq.top().first==a.first){
      auto b=pq.top(); pq.pop();
      que.push({b.second.first,b.second.second});
    } 
  }
  cout<<ans<<endl;
  
  return 0;
}
0