結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | akinyan |
提出日時 | 2022-09-02 23:05:01 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,160 bytes |
コンパイル時間 | 3,539 ms |
コンパイル使用メモリ | 260,460 KB |
実行使用メモリ | 814,720 KB |
最終ジャッジ日時 | 2024-11-16 05:47:15 |
合計ジャッジ時間 | 30,161 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 4 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 4 ms
6,816 KB |
testcase_14 | AC | 5 ms
6,816 KB |
testcase_15 | AC | 4 ms
6,816 KB |
testcase_16 | AC | 4 ms
6,820 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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ch = char; using ll = long long; using ld = long double; using db = double; using st = string; using vdb = vector<db>; using vvdb = vector<vdb>; using vl = vector<ll>; using vvl = vector<vl>; using vvvl = vector<vvl>; using vd = vector<ld>; using vvd = vector<vd>; using vs = vector<st>; using vvs = vector<vs>; using vc = vector<ch>; using vvc = vector<vc>; using vb = vector<bool>; using vvb = vector<vb>; using vvvb = vector<vvb>; const ll mod = 998244353; const ll MOD = 1000000007; using vp = vector<pair<ll,ll>>; #define fi first #define se second int main(){ ll H,W; cin>>H>>W; vvc X(H,vc(W)); for(int i=0; i<H; i++){ for(int j=0; j<W; j++) cin>>X[i][j]; } vvs A(H,vs(W)); A[0][0]=X[0][0]; for(int i=1; i<H; i++){ A.at(i).at(0)=A.at(i-1).at(0)+X.at(i).at(0); } for(int i=1; i<W; i++){ A.at(0).at(i)=A.at(0).at(i-1)+X.at(0).at(i); } for(int i=1; i<H; i++){ for(int j=1; j<W; j++){ st b=min(A.at(i-1).at(j),A.at(i).at(j-1)); A.at(i).at(j)=b+X.at(i).at(j); } if(i>1){ X.at(i-2).clear(); } } cout<<A.at(H-1).at(W-1)<<endl; }