結果
問題 | No.2915 辺更新価値最大化 |
ユーザー | maksim |
提出日時 | 2024-10-04 22:16:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 1,802 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 170,664 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 22:16:04 |
合計ジャッジ時間 | 2,760 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 10 ms
6,816 KB |
testcase_08 | AC | 14 ms
6,820 KB |
testcase_09 | AC | 20 ms
6,816 KB |
testcase_10 | AC | 20 ms
6,816 KB |
testcase_11 | AC | 21 ms
6,816 KB |
testcase_12 | AC | 21 ms
6,820 KB |
testcase_13 | AC | 29 ms
6,820 KB |
testcase_14 | AC | 23 ms
6,816 KB |
testcase_15 | AC | 24 ms
6,816 KB |
testcase_16 | AC | 27 ms
6,820 KB |
testcase_17 | AC | 12 ms
6,820 KB |
testcase_18 | AC | 12 ms
6,820 KB |
testcase_19 | AC | 11 ms
6,820 KB |
testcase_20 | AC | 11 ms
6,816 KB |
testcase_21 | AC | 7 ms
6,816 KB |
testcase_22 | AC | 5 ms
6,816 KB |
testcase_23 | AC | 7 ms
6,820 KB |
testcase_24 | AC | 6 ms
6,816 KB |
testcase_25 | AC | 7 ms
6,816 KB |
testcase_26 | AC | 6 ms
6,820 KB |
testcase_27 | AC | 7 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int p=998244353; int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*1LL*u)%p;} else {int u=po(a,b-1);return (a*1LL*u)%p;}} int inv(int x) {return po(x,p-2);} mt19937 rnd; #define app push_back #define all(x) (x).begin(),(x).end() #ifdef LOCAL #define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__) #define debugv(v) do {cout<< #v <<" : {"; for(int izxc=0;izxc<v.size();++izxc) {cout << v[izxc];if(izxc+1!=v.size()) cout << ","; }cout <<"}"<< endl;} while(0) #else #define debug(...) #define debugv(v) #endif #define lob(a,x) lower_bound(all(a),x) #define upb(a,x) upper_bound(all(a),x) const int inf=1e18; const int maxn=1e3+5; vector<array<int,3> > v; bool ok[maxn]; int dp[maxn]; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); int n,m,q;cin>>n>>m>>q; for(int i=0;i<m;++i) { int x,y,w;cin>>x>>y>>w;--x;--y; v.app({x,y,w}); } for(int i=0;i<m;++i) {ok[i]=1;} for(int i=0;i<q;++i) { int id;cin>>id;--id;ok[id]^=1; fill(dp,dp+maxn,-inf); dp[0]=0; while(true) { bool okk=false; for(int j=0;j<m;++j) { if(ok[j]) { auto h=v[j]; if(dp[h[1]]<dp[h[0]]+h[2]) { dp[h[1]]=dp[h[0]]+h[2]; okk=true; } } } if(!okk) {break;} } if(dp[n-1]<-1e12) { cout<<"NaN"<<'\n'; } else { cout<<dp[n-1]<<'\n'; } } return 0; }