結果
問題 | No.2712 Play more! |
ユーザー | ku_senjan |
提出日時 | 2024-03-31 15:12:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,549 bytes |
コンパイル時間 | 5,479 ms |
コンパイル使用メモリ | 391,576 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-30 20:24:44 |
合計ジャッジ時間 | 8,362 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 117 ms
6,816 KB |
testcase_08 | AC | 116 ms
6,820 KB |
testcase_09 | AC | 117 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 75 ms
6,816 KB |
testcase_12 | AC | 153 ms
6,816 KB |
testcase_13 | AC | 63 ms
6,816 KB |
testcase_14 | AC | 109 ms
6,816 KB |
testcase_15 | AC | 313 ms
6,816 KB |
testcase_16 | AC | 40 ms
6,820 KB |
testcase_17 | AC | 12 ms
6,816 KB |
testcase_18 | AC | 27 ms
6,820 KB |
testcase_19 | AC | 18 ms
6,820 KB |
testcase_20 | AC | 94 ms
6,820 KB |
testcase_21 | AC | 58 ms
6,820 KB |
testcase_22 | AC | 165 ms
6,820 KB |
testcase_23 | AC | 20 ms
6,820 KB |
testcase_24 | AC | 48 ms
6,820 KB |
testcase_25 | AC | 11 ms
6,816 KB |
testcase_26 | AC | 40 ms
6,820 KB |
testcase_27 | AC | 16 ms
6,820 KB |
testcase_28 | AC | 7 ms
6,816 KB |
testcase_29 | AC | 46 ms
6,816 KB |
testcase_30 | AC | 174 ms
6,816 KB |
testcase_31 | AC | 4 ms
6,816 KB |
testcase_32 | AC | 3 ms
6,820 KB |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ld=long double; template<class T> using graph=vector<vector<T>>; template<class T> using min_priority_queue=priority_queue<T,vector<T>,greater<T>>; constexpr int INF32=INT_MAX/2; constexpr ll INF64=1LL<<60; constexpr array<int,4> DX4={0,1,0,-1}; constexpr array<int,4> DY4={-1,0,1,0}; constexpr array<int,8> DX8={0,1,1,1,0,-1,-1,-1}; constexpr array<int,8> DY8={-1,-1,0,1,1,1,0,-1}; inline int popcnt(ll n){return __builtin_popcountll(n);} template<class T> inline bool chmax(T& a,const T& b){return a<b?a=b,true:false;} template<class T> inline bool chmin(T& a,const T& b){return b<a?a=b,true:false;} #define rep(i,s,n) for(ll i=(ll)(s);i<(ll)(n);i++) #define rrep(i,s,n) for(ll i=(ll)(s);i>=(ll)(n);i--) void _main(); int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); cout<<fixed<<setprecision(16); _main(); } #include <boost/multiprecision/cpp_int.hpp> using bint = boost::multiprecision::cpp_int; void _main(){ int N, M; cin >> N >> M; vector<ll> A(N); rep(i,0,N) cin >> A[i]; vector<tuple<int,int,ll>> edge; rep(i,0,M){ int a, b; cin >> a >> b; a--; b--; ll c; cin >> c; edge.emplace_back(a, b, c-A[b]); } bool inf = true; vector<bint> dist(N, LLONG_MAX); dist[0] = -A[0]; rep(i,0,N){ bool ok = true; for(auto [v, nv, c]:edge){ if(dist[v]==LLONG_MAX) continue; if(chmin(dist[nv], bint(dist[v]+c))) ok = false; } if(ok){ inf = false; break; } } if(inf) cout << "inf" << endl; else cout << -dist[N-1] << endl; }