結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2021-01-22 00:37:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 969 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 85,024 KB
実行使用メモリ 18,756 KB
最終ジャッジ日時 2024-06-09 06:29:58
合計ジャッジ時間 10,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,984 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 15 ms
6,980 KB
testcase_11 AC 12 ms
7,496 KB
testcase_12 AC 16 ms
7,236 KB
testcase_13 AC 170 ms
9,540 KB
testcase_14 AC 257 ms
11,584 KB
testcase_15 AC 245 ms
10,944 KB
testcase_16 AC 178 ms
9,412 KB
testcase_17 AC 80 ms
8,256 KB
testcase_18 AC 307 ms
11,716 KB
testcase_19 AC 300 ms
10,952 KB
testcase_20 AC 299 ms
11,976 KB
testcase_21 AC 307 ms
10,952 KB
testcase_22 AC 306 ms
11,336 KB
testcase_23 AC 71 ms
8,260 KB
testcase_24 AC 81 ms
6,948 KB
testcase_25 AC 183 ms
11,716 KB
testcase_26 AC 293 ms
12,736 KB
testcase_27 AC 224 ms
11,332 KB
testcase_28 AC 132 ms
9,792 KB
testcase_29 AC 223 ms
9,924 KB
testcase_30 AC 135 ms
9,416 KB
testcase_31 AC 91 ms
8,776 KB
testcase_32 AC 179 ms
9,672 KB
testcase_33 AC 281 ms
12,104 KB
testcase_34 AC 254 ms
12,616 KB
testcase_35 AC 236 ms
9,412 KB
testcase_36 AC 234 ms
8,904 KB
testcase_37 AC 178 ms
9,928 KB
testcase_38 AC 242 ms
8,772 KB
testcase_39 AC 243 ms
9,160 KB
testcase_40 AC 243 ms
8,900 KB
testcase_41 AC 240 ms
8,904 KB
testcase_42 AC 245 ms
9,028 KB
testcase_43 AC 105 ms
18,756 KB
testcase_44 AC 80 ms
8,092 KB
testcase_45 AC 105 ms
18,372 KB
testcase_46 AC 4 ms
6,944 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<cassert>
#include<tuple>
#include<iostream>
#include<vector>
using namespace std;
typedef long long lint;
typedef vector<int>vi;
typedef pair<int,int>pii;
typedef tuple<int,int,int>tri;
#define rep(i,n)for(int i=0;i<(int)(n);++i)

const lint mod=1e9+7;
const int N=100001;
int n,m;
vector<tri>g[N];
//dp1:通り数,dp2:長さの合計
lint dp1[N],dp2[N];
bool inf[N];
int st[N];

void dfs(int v){
  if(st[v]==1){
    inf[v]=1;
    st[v]=2;
    return;
  }
  if(st[v]==2){
    return;
  }
  st[v]=1;
  dp1[v]=v==n?1:0;
  for(tri wlk:g[v]){
    int w,l,k;
    tie(w,l,k)=wlk;
    
    dfs(w);
    if(inf[w]){
      inf[v]=1;
    }else{
      dp1[v]=(dp1[v]+dp1[w]*k)%mod;
      dp2[v]=(dp2[v]+dp2[w]*k+dp1[w]*k%mod*l)%mod;
    }
  }
  st[v]=2;
}

int main(){
  cin>>n>>m;
  rep(_,m){
    int a,b,l,k;cin>>a>>b>>l>>k;
    g[a].push_back(tri(b,l,k));
  }
  dfs(0);
  if(inf[0]){
    cout<<"INF"<<endl;
    return 0;
  }
  cout<<dp2[0]<<endl;
}
0