結果
問題 | No.2739 Time is money |
ユーザー | kmjp |
提出日時 | 2024-04-20 22:46:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 200 ms / 2,000 ms |
コード長 | 1,553 bytes |
コンパイル時間 | 2,238 ms |
コンパイル使用メモリ | 211,756 KB |
実行使用メモリ | 18,368 KB |
最終ジャッジ日時 | 2024-10-12 21:13:09 |
合計ジャッジ時間 | 6,420 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
8,772 KB |
testcase_01 | AC | 3 ms
8,772 KB |
testcase_02 | AC | 72 ms
14,400 KB |
testcase_03 | AC | 141 ms
17,568 KB |
testcase_04 | AC | 64 ms
14,276 KB |
testcase_05 | AC | 101 ms
14,748 KB |
testcase_06 | AC | 137 ms
16,800 KB |
testcase_07 | AC | 192 ms
18,116 KB |
testcase_08 | AC | 198 ms
18,368 KB |
testcase_09 | AC | 199 ms
18,248 KB |
testcase_10 | AC | 139 ms
17,732 KB |
testcase_11 | AC | 200 ms
18,288 KB |
testcase_12 | AC | 145 ms
16,068 KB |
testcase_13 | AC | 143 ms
15,944 KB |
testcase_14 | AC | 143 ms
15,940 KB |
testcase_15 | AC | 102 ms
17,848 KB |
testcase_16 | AC | 108 ms
16,480 KB |
testcase_17 | AC | 186 ms
18,308 KB |
testcase_18 | AC | 195 ms
18,288 KB |
testcase_19 | AC | 122 ms
17,920 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,M,X; vector<pair<int,pair<int,int>>> E[202020]; ll dp[202020]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M>>X; FOR(i,M) { cin>>x>>y>>k>>j; x--,y--; E[x].push_back({y,{j,k}}); E[y].push_back({x,{j,k}}); } FOR(i,N) dp[i]=1LL<<60; dp[0]=0; priority_queue<pair<ll,int>> Q; Q.push({0,0}); while(Q.size()) { ll co=-Q.top().first; int cur=Q.top().second; Q.pop(); if(dp[cur]!=co) continue; ll a=co/1000000; ll b=co%1000000; FORR2(e,c,E[cur]) { ll na=a+c.first; ll nb=b+c.second; na+=nb/X; nb%=X; ll v=na*1000000+nb; if(chmin(dp[e],v)) Q.push({-dp[e],e}); } } ll ret=dp[N-1]; if(ret==1LL<<60) { cout<<-1<<endl; } else { ret=ret/1000000+(ret%1000000>0); cout<<ret<<endl; } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }