結果

問題 No.2915 辺更新価値最大化
ユーザー momoyuumomoyuu
提出日時 2024-10-06 18:05:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,793 ms / 2,000 ms
コード長 1,833 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 125,704 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 18:05:43
合計ジャッジ時間 10,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 17 ms
5,248 KB
testcase_08 AC 22 ms
5,248 KB
testcase_09 AC 23 ms
5,248 KB
testcase_10 AC 22 ms
5,248 KB
testcase_11 AC 22 ms
5,248 KB
testcase_12 AC 22 ms
5,248 KB
testcase_13 AC 1,203 ms
5,248 KB
testcase_14 AC 1,295 ms
5,248 KB
testcase_15 AC 1,567 ms
5,248 KB
testcase_16 AC 1,793 ms
5,248 KB
testcase_17 AC 134 ms
5,248 KB
testcase_18 AC 135 ms
5,248 KB
testcase_19 AC 135 ms
5,248 KB
testcase_20 AC 133 ms
5,248 KB
testcase_21 AC 152 ms
5,248 KB
testcase_22 AC 115 ms
5,248 KB
testcase_23 AC 151 ms
5,248 KB
testcase_24 AC 151 ms
5,248 KB
testcase_25 AC 141 ms
5,248 KB
testcase_26 AC 146 ms
5,248 KB
testcase_27 AC 131 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<queue>
#include<atcoder/scc>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);


    ll n,m,q;
    cin>>n>>m>>q;
    vector<vector<int>> g(n);
    vector<ll> u(m),v(m),w(m);
    for(int i = 0;i<m;i++){
        cin>>u[i]>>v[i]>>w[i];
        u[i]--;v[i]--;
        g[u[i]].push_back(i);
    }
    vector<int> now(m,0);

    while(q--){
        {
            int j;
            cin>>j;
            j--;
            now[j] ^= 1;
        }
        atcoder::scc_graph s(n);
        {
            for(int i = 0;i<m;i++) if(now[i]==0) s.add_edge(u[i],v[i]);

        }
        auto use = s.scc();
        vector<int> cnt(n,0);
        for(int i = 0;i<use.size();i++) for(int j:use[i]) cnt[j] = i;
        vector<ll> can(n,-1e18);
        can[0] = 0;
        for(auto p:use){
            priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> que;
            for(int j:p) if(can[j]>=-1e8) que.push({can[j],j});
            while(que.size()){
                int ni = que.top().second;
                auto nn = que.top();
                que.pop();
                if(nn.first!=can[ni]) continue;
                for(auto id:g[ni]){
                    int to = v[id];
                    if(now[id]==1) continue;
                    if(cnt[to]==cnt[ni]){
                        if(can[to]<can[ni]+w[id]){
                            can[to] = can[ni] + w[id];
                            que.push({can[to],to});
                        }
                    }else{
                        can[to] = max(can[to],can[ni]+w[id]);
                    }
                }
            }
        }
        ll ans = can[n-1];
        if(ans<-1e8) cout<<"NaN\n";
        else cout<<ans<<endl;
    }
}   


0