結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー 👑 NachiaNachia
提出日時 2021-01-22 23:33:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 209,172 KB
実行使用メモリ 15,768 KB
最終ジャッジ日時 2024-06-08 18:38:53
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,144 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 AC 3 ms
6,016 KB
testcase_04 AC 3 ms
6,016 KB
testcase_05 AC 3 ms
6,016 KB
testcase_06 AC 4 ms
6,144 KB
testcase_07 AC 3 ms
6,144 KB
testcase_08 AC 8 ms
6,656 KB
testcase_09 AC 6 ms
6,400 KB
testcase_10 AC 7 ms
6,656 KB
testcase_11 AC 7 ms
6,656 KB
testcase_12 AC 8 ms
6,656 KB
testcase_13 AC 74 ms
12,552 KB
testcase_14 AC 105 ms
14,388 KB
testcase_15 AC 95 ms
14,292 KB
testcase_16 AC 79 ms
12,332 KB
testcase_17 AC 34 ms
9,552 KB
testcase_18 AC 128 ms
15,768 KB
testcase_19 AC 121 ms
15,648 KB
testcase_20 AC 140 ms
15,656 KB
testcase_21 AC 132 ms
15,668 KB
testcase_22 AC 128 ms
15,580 KB
testcase_23 AC 26 ms
8,192 KB
testcase_24 AC 29 ms
7,680 KB
testcase_25 AC 68 ms
10,752 KB
testcase_26 AC 104 ms
13,056 KB
testcase_27 AC 85 ms
12,288 KB
testcase_28 AC 48 ms
9,216 KB
testcase_29 AC 75 ms
12,096 KB
testcase_30 AC 50 ms
9,600 KB
testcase_31 AC 33 ms
8,320 KB
testcase_32 AC 63 ms
11,456 KB
testcase_33 AC 97 ms
12,800 KB
testcase_34 AC 89 ms
11,752 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 63 ms
10,368 KB
testcase_38 AC 82 ms
11,776 KB
testcase_39 AC 84 ms
11,648 KB
testcase_40 AC 85 ms
11,904 KB
testcase_41 AC 83 ms
11,904 KB
testcase_42 AC 85 ms
11,904 KB
testcase_43 AC 42 ms
11,332 KB
testcase_44 AC 38 ms
11,656 KB
testcase_45 AC 38 ms
9,600 KB
testcase_46 AC 6 ms
8,620 KB
testcase_47 AC 4 ms
6,016 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++)

const ULL M=1000000007;

struct Edge{
  int to;
  ULL d,t;
};

int N,n;
vector<Edge> E[100001];
int I[100001];
vector<int> Ord;
ULL dpc[100001];
ULL dp[100001];

int main() {
  scanf("%d%d",&N,&n); N++;
  rep(i,N) I[i]=0;
  rep(i,n){
    int u,v,d,t; scanf("%d%d%d%d",&u,&v,&d,&t);
    E[u].push_back({v,(ULL)d,(ULL)t});
    I[v]++;
  }
  {
    queue<int> Q; rep(i,N) if(I[i]==0) Q.push(i);
    vector<int> Iin(N);
    while(Q.size()){
      int p=Q.front(); Q.pop();
      Ord.push_back(p);
      Iin[p]=1;
      for(auto& e:E[p]) if((--I[e.to])==0) Q.push(e.to);
    }
    if(Iin[0]==0 || Iin[N-1]==0){ printf("INF\n"); return 0; }
  }
  rep(i,N) dp[i]=dpc[i]=0;
  dpc[0]=1;
  for(int p:Ord){
    for(Edge e:E[p]){
      dpc[e.to] = (dpc[e.to]+dpc[p]*e.t)%M;
      dp[e.to] = (dp[e.to]+(dp[p]+e.d*dpc[p])%M*e.t)%M;
    }
  }
  printf("%llu\n",dp[N-1]);
  return 0;
}
0