結果

問題 No.2712 Play more!
ユーザー Shota Yamaguchi (0214sh7)Shota Yamaguchi (0214sh7)
提出日時 2024-03-31 15:06:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,831 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 211,860 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-30 20:14:57
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 31 ms
6,820 KB
testcase_08 AC 31 ms
6,816 KB
testcase_09 AC 31 ms
6,816 KB
testcase_10 WA -
testcase_11 AC 27 ms
6,816 KB
testcase_12 AC 24 ms
6,820 KB
testcase_13 AC 22 ms
6,816 KB
testcase_14 AC 44 ms
6,816 KB
testcase_15 AC 65 ms
6,824 KB
testcase_16 AC 18 ms
6,816 KB
testcase_17 AC 6 ms
6,816 KB
testcase_18 AC 8 ms
6,816 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 39 ms
6,820 KB
testcase_21 AC 25 ms
6,816 KB
testcase_22 AC 25 ms
6,816 KB
testcase_23 AC 12 ms
6,816 KB
testcase_24 AC 15 ms
6,820 KB
testcase_25 AC 6 ms
6,816 KB
testcase_26 AC 10 ms
6,816 KB
testcase_27 AC 13 ms
6,816 KB
testcase_28 AC 4 ms
6,816 KB
testcase_29 AC 15 ms
6,816 KB
testcase_30 AC 72 ms
6,816 KB
testcase_31 AC 6 ms
6,820 KB
testcase_32 AC 5 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 1 ms
6,820 KB
testcase_35 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

 #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> PP;
// #define MOD 1000000007
#define MOD 998244353
#define INF 2305843009213693951
//#define INF 810114514
#define PI 3.141592653589
#define setdouble setprecision
#define REP(i,n) for(ll i=0;i<(n);++i)
#define OREP(i,n) for(ll i=1;i<=(n);++i)
#define RREP(i,n) for(ll i=(n)-1;i>=0;--i)
#define ORREP(i,n) for(ll i=(n);i>=1;--i)
#define rep(i,a,b) for(ll i=(a);i<=(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define GOODBYE do { cout << "-1" << endl; return 0; } while (false)
#define MM <<" "<<
#define Endl endl
#define debug true
#define debug2 false

class BellmanFord{
    // Copyright (c) 2023 0214sh7
    // https://github.com/0214sh7/library/
    private:
    typedef std::pair<std::pair<int,int>,long long> P;
    int V,E;
    // long long INF = (1LL<<61);
    std::vector<std::pair<std::pair<int,int>,long long>> es;
    
    public:
    void init(int N,std::vector<std::pair<std::pair<int,int>,long long>> edge){
        //辺数をもとめる 
        E=edge.size();
        //頂点数を決定する
        V=N;
        es=edge;
    }
    
    BellmanFord(int N,std::vector<std::pair<std::pair<int,int>,long long>> edge){
        init(N,edge);
    }

    std::vector<std::pair<long long,bool>> solve(int s){
        std::vector<std::pair<long long,bool>> d;
        //INFで初期化する
        for(int i=0;i<V;i++){
            d.push_back({INF,false});
        }
        d[s].first=0;
        for(int j=0;j<2*V;j++){
             bool update=false;
            for(int i=0;i<E;i++){
                P k=es[i];
                if(d[k.first.first].first!=INF && d[k.first.second].first>d[k.first.first].first+k.second){
                    d[k.first.second].first=d[k.first.first].first+k.second;
                    if(j>=V){
                        d[k.first.second].second=true;
                    }
                    update=true;
                }
            }
            if(!update)break;
        }
        return d;
    }
    
};

int main(void){
    //cin.tie(nullptr);
    //ios::sync_with_stdio(false);
    
    ll N,M;
    cin >> N >> M;
    vector<ll> A(N);
    REP(i,N){
        cin >> A[i];
    }

    vector<ll> U(M),V(M),C(M);
    std::vector<std::pair<std::pair<int,int>,long long>> E;
    REP(i,M){
        cin >> U[i] >> V[i] >> C[i];
        U[i]--;
        V[i]--;

        E.push_back({{U[i],V[i]},C[i]-A[V[i]]});
        
    }
    
    BellmanFord bellmanford(N,E);
    std::vector<std::pair<long long,bool>> B = bellmanford.solve(0);

    ll Ans = 0;
    for(int i=0;i<N;i++){
        if(B[i].second==true){
            std::cout << "inf" << endl;
            return 0;
        }
    }

    Ans += A[0]-B[N-1].first;
    cout << Ans << endl;

    return 0;
    
}
0