結果
問題 | No.2366 登校 |
ユーザー | asaringo |
提出日時 | 2023-06-30 22:58:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,478 bytes |
コンパイル時間 | 1,982 ms |
コンパイル使用メモリ | 217,688 KB |
実行使用メモリ | 22,488 KB |
最終ジャッジ日時 | 2024-07-07 22:02:24 |
合計ジャッジ時間 | 7,802 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | TLE | - |
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 ; #define fast_io ios::sync_with_stdio(false); cin.tie(nullptr); #pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math") typedef long long ll ; typedef long double ld ; #define chmin(a,b) a = min(a,b) #define chmax(a,b) a = max(a,b) #define bit_count(x) __builtin_popcountll(x) #define leading_zero_count(x) __builtin_clz(x) #define trailing_zero_count(x) __builtin_ctz(x) #define gcd(a,b) __gcd(a,b) #define lcm(a,b) a / gcd(a,b) * b #define rep(i,n) for(int i = 0 ; i < n ; i++) #define rrep(i,a,b) for(int i = a ; i < b ; i++) #define repi(it,S) for(auto it = S.begin() ; it != S.end() ; it++) #define pt(a) cout << a << endl #define debug(a) cout << #a << " " << a << endl #define all(a) a.begin(), a.end() #define endl "\n" #define v1(n,a) vector<ll>(n,a) #define v2(n,m,a) vector<vector<ll>>(n,v1(m,a)) #define v3(n,m,k,a) vector<vector<vector<ll>>>(n,v2(m,k,a)) #define v4(n,m,k,l,a) vector<vector<vector<vector<ll>>>>(n,v3(m,k,l,a)) template<typename T,typename U>istream &operator>>(istream&is,pair<T,U>&p){is>>p.first>>p.second;return is;} template<typename T,typename U>ostream &operator<<(ostream&os,const pair<T,U>&p){os<<p.first<<" "<<p.second;return os;} template<typename T>istream &operator>>(istream&is,vector<T>&v){for(T &in:v){is>>in;}return is;} template<typename T>ostream &operator<<(ostream&os,const vector<T>&v){for(auto it=v.begin();it!=v.end();){os<<*it<<((++it)!=v.end()?" ":"");}return os;} template<typename T>istream &operator>>(istream&is,vector<vector<T>>&v){for(T &in:v){is>>in;}return is;} template<typename T>ostream &operator<<(ostream&os,const vector<vector<T>>&v){for(auto it=v.begin();it!=v.end();){os<<*it<<((++it)!=v.end()?"\n":"");}return os;} template<typename T>ostream &operator<<(ostream&os,const set<T>&v){for(auto it=v.begin();it!=v.end();){os<<*it<<((++it)!=v.end()?" ":"");}return os;} vector<ll> A, B, C, D; int H, W, k, T; ll d[101][101][202]; pair<ll,ll> magic[101][101]; bool isok[101][101]; int dx[] = {0,0,1,-1}, dy[] = {1,-1,0,0}; void bfs(){ rep(i,H) rep(j,W) rep(t,202) d[i][j][t] = 1e18; d[0][0][T] = 0; priority_queue<tuple<ll,int,int,int>> que; que.push({0,0,0,T}); while(!que.empty()){ auto[dist,x,y,t] = que.top(); que.pop(); if(dist > d[x][y][t]) continue; rep(i,4){ int nx = x + dx[i], ny = y + dy[i]; if(0 > nx || nx >= H || 0 > ny || ny >= W) continue; if(t == 0) continue; if(d[nx][ny][t-1] > d[x][y][t]){ d[nx][ny][t-1] = d[x][y][t]; que.push({d[nx][ny][t-1],nx,ny,t-1}); } } if(!isok[x][y]) continue; auto[c,val] = magic[x][y]; int nt = t - 1 + c >= H + W ? H + W : t - 1 + c; if(d[x][y][nt] > d[x][y][t] + val){ d[x][y][nt] = d[x][y][t] + val; que.push({d[x][y][nt],x,y,nt}); } } } void solve(){ cin >> H >> W >> k >> T; A = vector<ll>(k); B = vector<ll>(k); C = vector<ll>(k); D = vector<ll>(k); rep(i,k) cin >> A[i] >> B[i] >> C[i] >> D[i]; rep(i,k) A[i]--; rep(i,k) B[i]--; rep(i,k){ magic[A[i]][B[i]] = {C[i],D[i]}; isok[A[i]][B[i]] = true; } bfs(); ll res = 1e18; rep(i,200) chmin(res,d[H-1][W-1][i]); if(res == 1e18) res = -1; cout << res << endl; } int main(){ fast_io // int t; // cin >> t; // rep(i,t) solve(); solve(); }