結果

問題 No.2064 Smallest Sequence on Grid
ユーザー umezoumezo
提出日時 2022-09-02 22:24:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 597 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 206,692 KB
実行使用メモリ 814,712 KB
最終ジャッジ日時 2024-11-16 04:20:03
合計ジャッジ時間 22,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
290,264 KB
testcase_01 AC 104 ms
290,256 KB
testcase_02 AC 104 ms
290,212 KB
testcase_03 AC 106 ms
290,236 KB
testcase_04 AC 107 ms
290,252 KB
testcase_05 AC 105 ms
290,228 KB
testcase_06 AC 105 ms
290,308 KB
testcase_07 AC 106 ms
290,368 KB
testcase_08 AC 107 ms
290,428 KB
testcase_09 AC 107 ms
290,404 KB
testcase_10 AC 107 ms
291,636 KB
testcase_11 AC 111 ms
291,224 KB
testcase_12 AC 111 ms
291,072 KB
testcase_13 AC 108 ms
291,516 KB
testcase_14 AC 108 ms
291,948 KB
testcase_15 AC 106 ms
291,172 KB
testcase_16 AC 108 ms
291,544 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
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 MLE -
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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;

string dp[3030][3030];
 
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];
  
  dp[0][0]=S[0][0];
  rep(i,h) rep(j,w){
    if(i==0 && j==0) continue;
    else if(i==0) dp[i][j]=dp[i][j-1]+S[i][j];
    else if(j==0) dp[i][j]=dp[i-1][j]+S[i][j];
    else if(i>0 && j>0) dp[i][j]=min(dp[i-1][j],dp[i][j-1])+S[i][j];
  }
  cout<<dp[h-1][w-1]<<endl;

  return 0;
}
0