結果
問題 | No.1283 Extra Fee |
ユーザー | Shibuyap |
提出日時 | 2020-11-08 20:35:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,150 bytes |
コンパイル時間 | 2,473 ms |
コンパイル使用メモリ | 208,160 KB |
実行使用メモリ | 11,352 KB |
最終ジャッジ日時 | 2024-07-22 15:42:40 |
合計ジャッジ時間 | 6,690 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 102 ms
10,728 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 222 ms
9,472 KB |
testcase_24 | AC | 300 ms
9,344 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 104 ms
11,352 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) using namespace std; typedef long long int ll; typedef pair<ll,ll> P; #define yn {puts("YES");}else{puts("NO");} #define MAX_N 200005 int dx[4] = {-1, 0, 1, 0}; int dy[4] = {0, -1, 0, 1}; int main() { int n, m; cin >> n >> m; ll a[n+2][n+2]; rep(i,n+2){ rep(j,n+2){ if(i==0||i==n+1||j==0||j==n+1) a[i][j] = 1001001001001001001; else a[i][j] = 0; } } rep(i,m){ int h, w, c; cin >> h >> w >> c; a[h][w] = c; } ll dp[n+2][n+2][2]; rep(i,n+2){ rep(j,n+2){ rep(k,2){ if(i==0||i==n+1||j==0||j==n+1) dp[i][j][k] = -1; else dp[i][j][k] = 1001001001001001001; } } } dp[1][1][0] = 0; pair<P,P> p; priority_queue<pair<P,P>,vector<pair<P,P>>,greater<pair<P,P>>> que; p.first.first = 0; p.first.second = 0; p.second.first = 1; p.second.second = 1; que.push(p); while(!que.empty()){ p = que.top(); que.pop(); int x = p.second.first; int y = p.second.second; int k = p.first.second; if(p.first.first > dp[x][y][k]) continue; // cout << x << ' ' << y << endl; rep(i,4){ int nx = x + dx[i]; int ny = y + dy[i]; if(dp[x][y][k]+a[nx][ny]+1<dp[nx][ny][k]){ dp[nx][ny][k] = dp[x][y][k]+a[nx][ny]+1; p.first.first = dp[x][y][k]+a[nx][ny]+1; p.second.first = nx; p.second.second = ny; que.push(p); } if(k == 0 && dp[x][y][k]+1<dp[nx][ny][k+1]){ dp[nx][ny][k+1] = dp[x][y][k]+1; p.first.first = dp[x][y][k]+1; p.second.first = nx; p.second.second = ny; p.first.second = k+1; que.push(p); } } } cout << min(dp[n][n][0],dp[n][n][1]) << endl; return 0; }