結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー kmjpkmjp
提出日時 2021-01-22 23:23:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 2,500 ms
コード長 2,712 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 224,192 KB
実行使用メモリ 141,692 KB
最終ジャッジ日時 2024-06-09 07:34:03
合計ジャッジ時間 11,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
107,904 KB
testcase_01 AC 41 ms
107,904 KB
testcase_02 AC 38 ms
107,904 KB
testcase_03 AC 39 ms
107,904 KB
testcase_04 AC 40 ms
107,904 KB
testcase_05 AC 41 ms
112,576 KB
testcase_06 AC 40 ms
108,032 KB
testcase_07 AC 39 ms
111,084 KB
testcase_08 AC 48 ms
113,440 KB
testcase_09 AC 45 ms
108,544 KB
testcase_10 AC 47 ms
113,692 KB
testcase_11 AC 63 ms
109,308 KB
testcase_12 AC 48 ms
109,184 KB
testcase_13 AC 193 ms
132,288 KB
testcase_14 AC 234 ms
132,696 KB
testcase_15 AC 256 ms
131,456 KB
testcase_16 AC 161 ms
128,072 KB
testcase_17 AC 108 ms
121,600 KB
testcase_18 AC 320 ms
141,320 KB
testcase_19 AC 326 ms
140,068 KB
testcase_20 AC 312 ms
137,644 KB
testcase_21 AC 339 ms
141,692 KB
testcase_22 AC 318 ms
140,596 KB
testcase_23 AC 81 ms
119,120 KB
testcase_24 AC 68 ms
117,064 KB
testcase_25 AC 142 ms
125,732 KB
testcase_26 AC 206 ms
131,216 KB
testcase_27 AC 151 ms
126,792 KB
testcase_28 AC 113 ms
121,280 KB
testcase_29 AC 144 ms
125,216 KB
testcase_30 AC 115 ms
121,756 KB
testcase_31 AC 97 ms
120,552 KB
testcase_32 AC 118 ms
124,176 KB
testcase_33 AC 193 ms
128,720 KB
testcase_34 AC 198 ms
130,012 KB
testcase_35 AC 243 ms
133,428 KB
testcase_36 AC 224 ms
132,372 KB
testcase_37 AC 111 ms
123,156 KB
testcase_38 AC 143 ms
125,736 KB
testcase_39 AC 139 ms
126,460 KB
testcase_40 AC 137 ms
127,260 KB
testcase_41 AC 138 ms
125,996 KB
testcase_42 AC 137 ms
127,012 KB
testcase_43 AC 125 ms
138,132 KB
testcase_44 AC 101 ms
130,440 KB
testcase_45 AC 141 ms
133,780 KB
testcase_46 AC 49 ms
114,284 KB
testcase_47 AC 38 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
vector<vector<ll>> E[202020];
vector<int> RE[202020];
int reach[202020];
class SCC {
public:
	static const int MV = 2025000;
	vector<vector<int> > SC; int NV,GR[MV];
private:
	vector<int> E[MV], RE[MV], NUM; int vis[MV];
public:
	void init(int NV) { this->NV=NV; for(int i=0;i<NV;i++) { E[i].clear(); RE[i].clear();}}
	void add_edge(int x,int y) { E[x].push_back(y); RE[y].push_back(x); }
	void dfs(int cu) { vis[cu]=1; for(int i=0;i<E[cu].size();i++) if(!vis[E[cu][i]]) dfs(E[cu][i]); NUM.push_back(cu); }
	void revdfs(int cu, int ind) { int i; vis[cu]=1; GR[cu]=ind; SC[ind].push_back(cu);
		FOR(i,RE[cu].size()) if(!vis[RE[cu][i]]) revdfs(RE[cu][i],ind);}
	void scc() {
		int c=0,i; SC.clear(); SC.resize(NV); NUM.clear();
		assert(NV);
		FOR(i,NV) vis[i]=0; FOR(i,NV) if(!vis[i]) dfs(i); FOR(i,NV) vis[i]=0;
		for(int i=NUM.size()-1;i>=0;i--) if(!vis[NUM[i]]){
			SC[c].clear(); revdfs(NUM[i],c); sort(SC[c].begin(),SC[c].end()); c++;
		}
		SC.resize(c);
	}
};
SCC scc;

ll num[202020];
ll sum[202020];
int in[202020];
const ll mo=1000000007;
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	
	scc.init(N+1);
	FOR(i,M) {
		cin>>x>>y>>j>>l;
		E[x].push_back({y,j,l});
		RE[y].push_back(x);
		scc.add_edge(x,y);
	}
	queue<int> Q;
	reach[N]=1;
	Q.push(N);
	while(Q.size()) {
		x=Q.front();
		Q.pop();
		FORR(e,RE[x]) if(reach[e]==0) {
			reach[e]=1;
			Q.push(e);
		}
	}
	scc.scc();
	if(reach[0]==0) return _P("0\n");
	FOR(i,N) if(reach[i]&&scc.SC[scc.GR[i]].size()>1) {
		cout<<"INF"<<endl;
		return;
	}
	
	FOR(i,N+1) {
		FORR(e,E[i]) if(reach[i]&&reach[e[0]]) in[e[0]]++;
	}
	
	FOR(i,N+1) if(reach[i]&&in[i]==0) Q.push(i);
	num[0]=1;
	sum[0]=0;
	
	while(Q.size()) {
		x=Q.front();
		Q.pop();
		FORR(e,E[x]) if(reach[e[0]]) {
			(num[e[0]]+=num[x]*e[2])%=mo;
			(sum[e[0]]+=e[2]*(sum[x]+num[x]*e[1]%mo))%=mo;
			in[e[0]]--;
			if(in[e[0]]==0) Q.push(e[0]);
		}
	}
	
	cout<<sum[N]<<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;
}
0