結果
問題 | No.2366 登校 |
ユーザー | 沙耶花 |
提出日時 | 2023-06-30 22:17:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 527 ms / 4,000 ms |
コード長 | 1,602 bytes |
コンパイル時間 | 4,625 ms |
コンパイル使用メモリ | 267,472 KB |
実行使用メモリ | 20,128 KB |
最終ジャッジ日時 | 2024-06-12 07:50:11 |
合計ジャッジ時間 | 9,525 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
17,956 KB |
testcase_01 | AC | 4 ms
17,956 KB |
testcase_02 | AC | 4 ms
18,140 KB |
testcase_03 | AC | 5 ms
16,312 KB |
testcase_04 | AC | 5 ms
18,008 KB |
testcase_05 | AC | 5 ms
18,004 KB |
testcase_06 | AC | 5 ms
17,996 KB |
testcase_07 | AC | 6 ms
18,040 KB |
testcase_08 | AC | 5 ms
18,060 KB |
testcase_09 | AC | 6 ms
18,024 KB |
testcase_10 | AC | 4 ms
17,948 KB |
testcase_11 | AC | 5 ms
18,124 KB |
testcase_12 | AC | 253 ms
19,736 KB |
testcase_13 | AC | 234 ms
19,672 KB |
testcase_14 | AC | 240 ms
19,768 KB |
testcase_15 | AC | 250 ms
19,636 KB |
testcase_16 | AC | 248 ms
19,644 KB |
testcase_17 | AC | 251 ms
19,840 KB |
testcase_18 | AC | 244 ms
19,680 KB |
testcase_19 | AC | 250 ms
19,700 KB |
testcase_20 | AC | 249 ms
19,740 KB |
testcase_21 | AC | 232 ms
19,696 KB |
testcase_22 | AC | 209 ms
19,260 KB |
testcase_23 | AC | 87 ms
20,016 KB |
testcase_24 | AC | 88 ms
20,084 KB |
testcase_25 | AC | 527 ms
20,128 KB |
testcase_26 | AC | 519 ms
20,040 KB |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint1000000007; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 long long dis[325][80][80]; int cs[80][80],ds[80][80]; int main(){ int N,M,K,T; cin>>N>>M>>K>>T; T = min(T,160); rep(i,325){ rep(j,N){ rep(k,M)dis[i][j][k] = Inf64; } } rep(i,K){ int a,b,c,d; cin>>a>>b>>c>>d; a--,b--; cs[a][b] = c; ds[a][b] = d; } int cen = 160; dis[cen][0][0] = 0; priority_queue<pair<long long,vector<int>>,vector<pair<long long,vector<int>>>,greater<pair<long long,vector<int>>>> Q; Q.emplace(0LL,vector<int>({cen,0,0})); vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1}; while(Q.size()>0){ long long D = Q.top().first; int a = Q.top().second[0]; int x = Q.top().second[1]; int y = Q.top().second[2]; Q.pop(); if(dis[a][x][y]!=D)continue; rep(i,4){ int aa = a+1; int xx = x+dx[i]; int yy = y+dy[i]; if(xx>=N||yy>=M||xx<0||yy<0||aa>=325||aa<0)continue; if(dis[aa][xx][yy]>D){ dis[aa][xx][yy] = D; Q.emplace(D,vector<int>({aa,xx,yy})); } } if(cs[x][y]!=0){ long long DD = D + ds[x][y]; //cout<<DD<<','<<endl; int aa = max(0,a- cs[x][y] + 1); //cout<<a<<','<<aa<<endl; int xx = x,yy = y; if(dis[aa][xx][yy]>DD){ dis[aa][xx][yy] = DD; Q.emplace(DD,vector<int>({aa,xx,yy})); } } } long long ans = Inf64; rep(i,cen+T+1)ans = min(ans,dis[i][N-1][M-1]); if(ans==Inf64)ans = -1; cout<<ans<<endl; return 0; }