結果

問題 No.2915 辺更新価値最大化
ユーザー kmjpkmjp
提出日時 2024-10-05 01:02:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,328 ms / 2,000 ms
コード長 1,846 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 210,984 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 01:02:34
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 9 ms
6,816 KB
testcase_09 AC 17 ms
6,816 KB
testcase_10 AC 18 ms
6,820 KB
testcase_11 AC 24 ms
6,820 KB
testcase_12 AC 22 ms
6,816 KB
testcase_13 AC 787 ms
6,820 KB
testcase_14 AC 962 ms
6,816 KB
testcase_15 AC 1,164 ms
6,816 KB
testcase_16 AC 1,328 ms
6,816 KB
testcase_17 AC 56 ms
6,816 KB
testcase_18 AC 43 ms
6,816 KB
testcase_19 AC 52 ms
6,816 KB
testcase_20 AC 51 ms
6,816 KB
testcase_21 AC 22 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 20 ms
6,820 KB
testcase_24 AC 20 ms
6,816 KB
testcase_25 AC 24 ms
6,820 KB
testcase_26 AC 15 ms
6,816 KB
testcase_27 AC 32 ms
6,816 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,T;
int U[1010],V[1010],W[1010];
int dis[1010];

vector<int> E[1010];
int dp[1010];
int P[1010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>T;
	FOR(i,M) {
		cin>>U[i]>>V[i]>>W[i];
		U[i]--,V[i]--;
		E[U[i]].push_back(i);
	}
	FOR(i,N) dp[i]=-1<<30;
	
	dp[0]=0;
	priority_queue<pair<int,int>> Q;
	Q.push({0,0});
	while(Q.size()) {
		int co=-Q.top().first;
		int cur=Q.top().second;
		Q.pop();
		if(co!=dp[cur]) continue;
		FORR(e,E[cur]) if(dis[e]==0 && chmax(dp[V[e]],co+W[e])) Q.push({-dp[V[e]],V[e]});
	}
	FOR(i,M) {
		W[i]=dp[V[i]]-dp[U[i]]+W[i];
	}
	
	FOR(i,N) P[i]=dp[i];
	
	while(T--) {
		cin>>x;
		dis[x-1]^=1;
		FOR(i,N) dp[i]=-1<<30;
		
		dp[0]=0;
		priority_queue<pair<int,int>> Q;
		Q.push({0,0});
		while(Q.size()) {
			int co=-Q.top().first;
			int cur=Q.top().second;
			Q.pop();
			if(co!=dp[cur]) continue;
			FORR(e,E[cur]) if(dis[e]==0 && chmax(dp[V[e]],co+W[e])) Q.push({-dp[V[e]],V[e]});
		}
		int ret=dp[N-1];
		if(ret==-1<<30) {
			cout<<"NaN"<<endl;
		}
		else {
			cout<<ret-P[N-1]<<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