結果
問題 | No.2095 High Rise |
ユーザー | Nzt3 |
提出日時 | 2022-12-23 02:16:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 382 ms / 2,000 ms |
コード長 | 1,284 bytes |
コンパイル時間 | 2,510 ms |
コンパイル使用メモリ | 215,224 KB |
実行使用メモリ | 23,960 KB |
最終ジャッジ日時 | 2024-11-18 03:53:26 |
合計ジャッジ時間 | 6,535 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 40 ms
5,888 KB |
testcase_18 | AC | 26 ms
5,248 KB |
testcase_19 | AC | 8 ms
5,248 KB |
testcase_20 | AC | 44 ms
6,144 KB |
testcase_21 | AC | 89 ms
8,552 KB |
testcase_22 | AC | 380 ms
23,956 KB |
testcase_23 | AC | 382 ms
23,956 KB |
testcase_24 | AC | 377 ms
23,960 KB |
testcase_25 | AC | 377 ms
23,952 KB |
testcase_26 | AC | 378 ms
23,952 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin>>N>>M; vector<vector<int>>A(N,vector<int>(M)); for(int i=0;i<N;i++){ for(int j=0;j<M;j++)cin>>A[i][j]; } vector<vector<array<long long,2>>>dist(N,vector<array<long long,2>>(M,{(long long)1e18,(long long)1e18})); priority_queue<array<long long,4>,vector<array<long long,4>>,greater<array<long long,4>>>pq; pq.push({0,0,0,0}); dist[0][0][0]=0; while(pq.size()){ long long d=pq.top()[0],f=pq.top()[1],r=pq.top()[2],e=pq.top()[3]; pq.pop(); if(dist[f][r][e]<d)continue; if(e==0){ if(r>0&&dist[f][r-1][0]>d){ dist[f][r-1][0]=d; pq.push({d,f,r-1,0}); } if(r+1<M&&dist[f][r+1][0]>d){ dist[f][r+1][0]=d; pq.push({d,f,r+1,0}); } if(dist[f][r][1]>d+A[f][r]){ dist[f][r][1]=d+A[f][r]; pq.push({d+A[f][r],f,r,1}); } }else{ if(dist[f][r][0]>d){ dist[f][r][0]=d; pq.push({d,f,r,0}); } if(f+1<N&&dist[f+1][r][1]>d+A[f+1][r]){ dist[f+1][r][1]=d+A[f+1][r]; pq.push({d+A[f+1][r],f+1,r,1}); } } } long long ans=1e18; for(int i=0;i<M;i++)ans=min(ans,dist[N-1][i][0]); cout<<ans<<'\n'; }