結果
問題 | No.2366 登校 |
ユーザー | momoyuu |
提出日時 | 2023-10-26 11:06:55 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,903 bytes |
コンパイル時間 | 3,221 ms |
コンパイル使用メモリ | 261,272 KB |
実行使用メモリ | 377,908 KB |
最終ジャッジ日時 | 2024-09-25 12:19:33 |
合計ジャッジ時間 | 9,265 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,360 KB |
testcase_01 | AC | 3 ms
7,516 KB |
testcase_02 | AC | 5 ms
7,648 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
7,516 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 104 ms
16,508 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 5 ms
7,644 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; ll memo[81][81][15000]; int vis[81][81][15000]; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll ans = 1e18; ll n,m,k,t; cin>>n>>m>>k>>t; vector<vector<pair<ll,ll>>> use(n,vector<pair<ll,ll>>(m)); for(int i = 0;i<k;i++){ ll a,b,c,d; cin>>a>>b>>c>>d; a--;b--; use[a][b] = make_pair(c,d); } using dat = pair<ll,pair<ll,ll>>; priority_queue<pair<ll,dat>,vector<pair<ll,dat>>,greater<pair<ll,dat>>> que; que.push(make_pair(0,make_pair(0,make_pair(0,0)))); int dx[] = {1,-1,0,0}; int dy[] = {0,0,1,-1}; for(int i = 0;i<n;i++) for(int j = 0;j<m;j++) for(int k = 0;k<15000;k++) memo[i][j][k] = 1e18; ll can = 1e18; while(!que.empty()){ auto now = que.top(); que.pop(); int ni = now.second.second.first; int nj = now.second.second.second; if(vis[ni][nj][now.second.first+7000]++) continue; if(ni==n-1&&nj==m-1){ if(now.second.first>t) continue; ans = min(ans,now.first); continue; } for(int k = 0;k<4;k++){ int nni = ni + dx[k]; int nnj = nj + dy[k]; if(nni<0||nnj<0||nni>=n||nnj>=m) continue; ll nxt = now.second.first; nxt++; ll cost = now.first; if(use[nni][nnj].first!=0){ nxt++; nxt -= use[nni][nnj].first; cost += use[nni][nnj].second; } if(nxt<=-7000) nxt = -7000; if(nxt>=7000) nxt = 7000; dat will = make_pair(nxt,make_pair(nni,nnj)); if(memo[nni][nnj][nxt+7000]<=cost) continue; memo[nni][nnj][nxt+7000]; que.push(make_pair(cost,will)); } } if(ans==1e18) ans = -1; cout<<ans<<endl; }