結果

問題 No.2712 Play more!
ユーザー nononnonon
提出日時 2024-03-31 15:05:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,161 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 211,876 KB
実行使用メモリ 529,340 KB
最終ジャッジ日時 2024-09-30 20:16:04
合計ジャッジ時間 58,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1,960 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1,961 ms
20,272 KB
testcase_04 WA -
testcase_05 AC 1,960 ms
6,816 KB
testcase_06 AC 1,960 ms
6,816 KB
testcase_07 AC 1,964 ms
6,816 KB
testcase_08 AC 1,960 ms
6,824 KB
testcase_09 AC 1,960 ms
6,820 KB
testcase_10 WA -
testcase_11 AC 1,961 ms
70,096 KB
testcase_12 AC 1,959 ms
13,812 KB
testcase_13 AC 1,960 ms
135,096 KB
testcase_14 AC 1,959 ms
6,816 KB
testcase_15 AC 1,962 ms
36,760 KB
testcase_16 AC 1,994 ms
266,812 KB
testcase_17 TLE -
testcase_18 AC 1,966 ms
38,416 KB
testcase_19 AC 1,962 ms
136,256 KB
testcase_20 AC 1,973 ms
135,652 KB
testcase_21 MLE -
testcase_22 AC 1,961 ms
37,176 KB
testcase_23 MLE -
testcase_24 AC 1,963 ms
136,016 KB
testcase_25 MLE -
testcase_26 AC 1,959 ms
37,220 KB
testcase_27 AC 1,960 ms
6,816 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 1,961 ms
135,244 KB
testcase_30 AC 1,960 ms
20,612 KB
testcase_31 AC 8 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int N,M,A[2525];
vector<pair<int,long>>G[2525];
long H[2525];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int ti=clock();
    cin>>N>>M;
    for(int i=0;i<N;i++)cin>>A[i];
    for(;M--;)
    {
        int u,v,w;
        cin>>u>>v>>w;
        u--,v--;
        G[u].push_back(make_pair(v,w));
    }
    for(int i=0;i<N;i++)H[i]=-1L<<60;
    priority_queue<pair<long,int>>q;
    q.push(make_pair(A[0],0));
    H[0]=A[0];
    while(!q.empty())
    {
        double t=(double)(clock()-ti)/CLOCKS_PER_SEC;
        if(t>1.95)
        {
            cout<<"inf"<<endl;
            return 0;
        }
        auto[d,u]=q.top();
        q.pop();
        if(H[u]>d)continue;
        if(u==N-1)continue;
        for(auto[v,w]:G[u])
        {
            if(H[v]<d-w+A[v])
            {
                // if(-(1L<<60)<H[v])
                // {
                //     cout<<"inf"<<endl;
                //     return 0;
                // }
                H[v]=d-w+A[v];
                q.push(make_pair(H[v],v));
            }
        }
    }
    assert(-(1L<<60)<H[N-1]);
    cout<<H[N-1]<<endl;
}
0