結果
問題 | No.1283 Extra Fee |
ユーザー | saxofone111 |
提出日時 | 2021-03-07 14:18:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 511 ms / 2,000 ms |
コード長 | 2,492 bytes |
コンパイル時間 | 2,490 ms |
コンパイル使用メモリ | 216,492 KB |
実行使用メモリ | 77,864 KB |
最終ジャッジ日時 | 2024-11-16 07:19:55 |
合計ジャッジ時間 | 10,222 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 21 ms
7,424 KB |
testcase_12 | AC | 26 ms
7,808 KB |
testcase_13 | AC | 18 ms
6,820 KB |
testcase_14 | AC | 82 ms
16,128 KB |
testcase_15 | AC | 134 ms
23,680 KB |
testcase_16 | AC | 27 ms
7,552 KB |
testcase_17 | AC | 315 ms
70,972 KB |
testcase_18 | AC | 457 ms
70,196 KB |
testcase_19 | AC | 487 ms
73,340 KB |
testcase_20 | AC | 459 ms
68,848 KB |
testcase_21 | AC | 465 ms
70,076 KB |
testcase_22 | AC | 414 ms
63,004 KB |
testcase_23 | AC | 390 ms
75,492 KB |
testcase_24 | AC | 463 ms
75,676 KB |
testcase_25 | AC | 509 ms
75,672 KB |
testcase_26 | AC | 509 ms
75,548 KB |
testcase_27 | AC | 511 ms
75,756 KB |
testcase_28 | AC | 505 ms
75,748 KB |
testcase_29 | AC | 345 ms
77,864 KB |
ソースコード
#include "bits/stdc++.h" #define MOD 1000000007 #define rep(i, n) for(ll i=0; i < (n); i++) #define rrep(i, n) for(ll i=(n)-1; i >=0; i--) #define ALL(v) v.begin(),v.end() #define rALL(v) v.rbegin(),v.rend() #define FOR(i, j, k) for(ll i=j;i<k;i++) #define debug_print(var) cerr << #var << "=" << var <<endl; #define DUMP(i, v)for(ll i=0;i<v.size();i++)cerr<<v[i]<<" " #define fi first #define se second using namespace std; typedef long long int ll; typedef vector<ll> llvec; typedef vector<double> dvec; typedef pair<ll, ll> P; typedef long double ld; struct edge{ll x, c;}; struct dijkstra{ ll N; llvec d; vector<vector<edge>> e; dijkstra(ll n){ N = n; //d = llvec(N, 1e18); e = vector<vector<edge>>(N); } void add_edge(ll from, ll to, ll cost){ e[from].push_back({to, cost}); } void run(ll start){ priority_queue<P, vector<P>, greater<P>> que; que.push({0, start}); d = llvec(N, 1e18); d[start]=0; while(!que.empty()){ P q = que.top();que.pop(); ll dc = q.first; ll x = q.second; if(dc>d[x]){ continue; }else{ for(auto ip: e[x]){ if(d[ip.x]<=d[x]+ip.c){ continue; }else{ d[ip.x]= d[x]+ip.c; que.push({d[ip.x], ip.x}); } } } } } }; /************************************** ** A main function starts from here ** ***************************************/ int main(){ ll N, M; cin >> N >> M; vector<llvec> c(N, llvec(N, 0)); dijkstra dijk(N*N*2); rep(i, M){ ll a, b, d; cin >> a >> b >> d; a--;b--; c[a][b]+=d; } rep(i, N){ rep(j, N){ if(i-1>=0)dijk.add_edge(i*N+j, (i-1)*N+j, c[i][j]+1); if(i+1<N)dijk.add_edge(i*N+j, (i+1)*N+j, c[i][j]+1); if(j-1>=0)dijk.add_edge(i*N+j, i*N+j-1, c[i][j]+1); if(j+1<N)dijk.add_edge(i*N+j, i*N+j+1, c[i][j]+1); if(i-1>=0)dijk.add_edge(i*N+j+N*N, (i-1)*N+j+N*N, c[i][j]+1); if(i+1<N)dijk.add_edge(i*N+j+N*N, (i+1)*N+j+N*N, c[i][j]+1); if(j-1>=0)dijk.add_edge(i*N+j+N*N, i*N+j-1+N*N, c[i][j]+1); if(j+1<N)dijk.add_edge(i*N+j+N*N, i*N+j+1+N*N, c[i][j]+1); if(i-1>=0)dijk.add_edge(i*N+j, (i-1)*N+j+N*N, 1); if(i+1<N)dijk.add_edge(i*N+j, (i+1)*N+j+N*N, 1); if(j-1>=0)dijk.add_edge(i*N+j, i*N+j-1+N*N, 1); if(j+1<N)dijk.add_edge(i*N+j, i*N+j+1+N*N, 1); } } dijk.run(0); ll ans = min(dijk.d[N*N-1], dijk.d[2*N*N-1]); cout << ans << endl; return 0; }