結果

問題 No.1449 新プロランド
ユーザー 👑 NachiaNachia
提出日時 2021-03-31 14:39:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,494 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 211,880 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-06-06 10:51:34
合計ジャッジ時間 13,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 15 ms
5,248 KB
testcase_02 AC 77 ms
5,888 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 1,494 ms
36,736 KB
testcase_06 AC 721 ms
25,600 KB
testcase_07 AC 400 ms
26,624 KB
testcase_08 AC 925 ms
38,784 KB
testcase_09 AC 306 ms
10,624 KB
testcase_10 AC 376 ms
33,152 KB
testcase_11 AC 90 ms
36,736 KB
testcase_12 AC 957 ms
32,768 KB
testcase_13 AC 361 ms
14,848 KB
testcase_14 AC 114 ms
38,400 KB
testcase_15 AC 892 ms
28,672 KB
testcase_16 AC 562 ms
17,536 KB
testcase_17 AC 642 ms
24,576 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 21 ms
29,184 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 219 ms
26,624 KB
testcase_22 AC 69 ms
6,272 KB
testcase_23 AC 293 ms
35,456 KB
testcase_24 AC 238 ms
9,344 KB
testcase_25 AC 155 ms
8,064 KB
testcase_26 AC 9 ms
5,376 KB
testcase_27 AC 1,376 ms
38,400 KB
testcase_28 AC 538 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct Edge{ int to; int d; };
using dijkstra_queue = priority_queue<pair<int,pair<int,int>>,vector<pair<int,pair<int,int>>>,greater<pair<int,pair<int,int>>>>;

int N,M;
vector<vector<Edge>> E;
int D[100][100001];
int C[100];

int main(){
  cin>>N>>M;
  E.resize(N);
  rep(i,M){
    int u,v,c; cin>>u>>v>>c; u--; v--;
    E[u].push_back({v,c});
    E[v].push_back({u,c}); 
  }
  rep(i,N) cin>>C[i];
  rep(i,N) rep(d,100001) D[i][d]=-1;

  dijkstra_queue Q;
  D[0][0]=0; Q.push({0,{0,0}});
  while(Q.size()){
    int p=Q.top().second.first;
    int c=Q.top().second.second;
    int t=Q.top().first;
    Q.pop();
    if(D[p][c]!=t) continue;
    c += C[p]; t += C[p];
    if(c>100000) continue;
    for(Edge e:E[p]){
      int nxt = t + e.d / c;
      if(D[e.to][c] != -1 && D[e.to][c] <= nxt) continue;
      D[e.to][c] = nxt;
      Q.push({nxt,{e.to,c}});
    }
  }

  int ans=1001001001;
  rep(i,100001){
    if(D[N-1][i]!=-1) ans=min(ans,D[N-1][i]);
  }
  cout<<ans<<"\n";
  return 0;
}
0