結果
問題 | No.1283 Extra Fee |
ユーザー | kotatsugame |
提出日時 | 2020-11-08 00:17:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 301 ms / 2,000 ms |
コード長 | 1,107 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 79,056 KB |
実行使用メモリ | 12,128 KB |
最終ジャッジ日時 | 2024-11-16 07:07:27 |
合計ジャッジ時間 | 5,620 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 3 ms
7,628 KB |
testcase_05 | AC | 3 ms
7,628 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,824 KB |
testcase_09 | AC | 3 ms
7,628 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 12 ms
6,816 KB |
testcase_12 | AC | 15 ms
6,820 KB |
testcase_13 | AC | 12 ms
6,820 KB |
testcase_14 | AC | 49 ms
6,816 KB |
testcase_15 | AC | 74 ms
8,092 KB |
testcase_16 | AC | 16 ms
6,820 KB |
testcase_17 | AC | 168 ms
12,128 KB |
testcase_18 | AC | 262 ms
8,444 KB |
testcase_19 | AC | 283 ms
8,464 KB |
testcase_20 | AC | 264 ms
8,184 KB |
testcase_21 | AC | 272 ms
8,404 KB |
testcase_22 | AC | 247 ms
8,256 KB |
testcase_23 | AC | 212 ms
8,248 KB |
testcase_24 | AC | 287 ms
8,348 KB |
testcase_25 | AC | 297 ms
8,480 KB |
testcase_26 | AC | 301 ms
8,480 KB |
testcase_27 | AC | 296 ms
8,480 KB |
testcase_28 | AC | 296 ms
8,600 KB |
testcase_29 | AC | 182 ms
11,972 KB |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<queue> using namespace std; int N,M; int c[500][500]; long dist[2][500][500]; int d[5]={0,1,0,-1}; main() { cin>>N>>M; for(int i=0;i<M;i++) { int x,y;cin>>x>>y; cin>>c[x-1][y-1]; } for(int i=0;i<N;i++)for(int j=0;j<N;j++) { dist[0][i][j]=dist[1][i][j]=1e18; } priority_queue<pair<long,pair<int,pair<int,int> > > >P; for(int i=0;i<2;i++) { dist[i][0][0]=0; P.push(make_pair(0,make_pair(i,make_pair(0,0)))); } while(!P.empty()) { long cost=-P.top().first; int f=P.top().second.first,x=P.top().second.second.first,y=P.top().second.second.second; P.pop(); if(dist[f][x][y]<cost)continue; for(int r=0;r<4;r++) { int tx=x+d[r],ty=y+d[r+1]; if(tx<0||ty<0||tx>=N||ty>=N)continue; long nxt=cost+c[tx][ty]+1; if(dist[f][tx][ty]>nxt) { dist[f][tx][ty]=nxt; P.push(make_pair(-nxt,make_pair(f,make_pair(tx,ty)))); } if(f==0) { nxt-=c[tx][ty]; if(dist[f+1][tx][ty]>nxt) { dist[f+1][tx][ty]=nxt; P.push(make_pair(-nxt,make_pair(f+1,make_pair(tx,ty)))); } } } } cout<<dist[1][N-1][N-1]<<endl; }