結果

問題 No.2387 Yokan Factory
ユーザー planesplanes
提出日時 2023-07-21 21:45:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 419 ms / 5,000 ms
コード長 1,478 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 178,388 KB
実行使用メモリ 13,252 KB
最終ジャッジ日時 2024-09-21 23:12:21
合計ジャッジ時間 6,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 203 ms
12,912 KB
testcase_16 AC 127 ms
13,252 KB
testcase_17 AC 310 ms
12,132 KB
testcase_18 AC 309 ms
10,776 KB
testcase_19 AC 256 ms
8,644 KB
testcase_20 AC 212 ms
8,180 KB
testcase_21 AC 419 ms
10,524 KB
testcase_22 AC 197 ms
7,736 KB
testcase_23 AC 274 ms
8,676 KB
testcase_24 AC 97 ms
8,064 KB
testcase_25 AC 181 ms
6,428 KB
testcase_26 AC 309 ms
9,192 KB
testcase_27 AC 405 ms
10,028 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;


int main() {
    ios::sync_with_stdio(false);
  cin.tie(0);

ll N,M,X;cin>>N>>M>>X;

vector<vector<pair<ll,ll>>> vec(N,vector<pair<ll,ll>>(0));
vector<ll> a(M),b(M);

for(ll i=0;i<M;i++) {
  ll u,v;
  cin>>u>>v;
  cin>>a[i]>>b[i];
  u--;v--;
  vec[u].push_back(make_pair(v,i));
  vec[v].push_back(make_pair(u,i));
}


ll s=1;
ll g=1000000000;

while(s<g) {
  ll k=(s+g+1)/2;
vector<ll> d(N,INF);
d[0]=0;
priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> S;
S.push(make_pair(0,0));

while(!S.empty()) {
  auto p=S.top();
  S.pop();

  if(d[p.second]<p.first) continue;

  for(auto x:vec[p.second]) {
    if(b[x.second]<k) continue;
    if(d[x.first]>p.first+a[x.second]) {
      d[x.first]=p.first+a[x.second];
      S.push(make_pair(d[x.first],x.first));
    }
  }
}



if(d[N-1]<=X) s=k;
else g=k-1;
}




vector<ll> d(N,INF);
d[0]=0;
priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> S;
S.push(make_pair(0,0));

while(!S.empty()) {
  auto p=S.top();
  S.pop();

  if(d[p.second]<p.first) continue;

  for(auto x:vec[p.second]) {
    if(d[x.first]>p.first+a[x.second]) {
      d[x.first]=p.first+a[x.second];
      S.push(make_pair(d[x.first],x.first));
    }
  }
}

if(d[N-1]>X) {
  cout<<-1<<endl;
  return 0;
}




cout<<s<<endl;
}


0