結果
問題 | No.1014 competitive fighting |
ユーザー | otamay6 |
提出日時 | 2020-02-19 18:06:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 1,910 ms |
コンパイル使用メモリ | 181,568 KB |
実行使用メモリ | 822,196 KB |
最終ジャッジ日時 | 2024-12-14 16:09:10 |
合計ジャッジ時間 | 106,854 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
15,008 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 2 ms
14,372 KB |
testcase_04 | AC | 2 ms
13,632 KB |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | TLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | AC | 38 ms
24,100 KB |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 266 ms
115,200 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | AC | 33 ms
6,912 KB |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 33 ms
6,816 KB |
testcase_33 | AC | 66 ms
6,816 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 16 ms
6,816 KB |
testcase_38 | TLE | - |
testcase_39 | AC | 1,286 ms
6,824 KB |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | AC | 47 ms
6,816 KB |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | AC | 119 ms
6,816 KB |
testcase_47 | AC | 1,079 ms
6,816 KB |
testcase_48 | TLE | - |
testcase_49 | AC | 21 ms
6,816 KB |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | AC | 23 ms
6,820 KB |
testcase_53 | MLE | - |
ソースコード
#include<bits/stdc++.h> #define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i) #define rep(i,a,b) for(int i=int(a);i<int(b);++i) #define All(x) (x).begin(),(x).end() #define rAll(x) (x).rbegin(),(x).rend() using namespace std; using ll = long long; int main(){ int N;cin>>N; vector<ll> A(N),B(N),C(N); REP(i,N) cin>>A[i]>>B[i]>>C[i]; vector<vector<pair<ll,int>>> graph(N); vector<int> num(N); REP(i,N) REP(j,N) if(i!=j){ if(A[i]<=B[j]-C[j]){ graph[i].push_back(make_pair(-B[i],j)); num[j]++; } } queue<int> L,S; REP(i,N){ if(num[i]==0) S.push(i); } while(!S.empty()){ int n=S.front();S.pop(); L.push(n); REP(j,graph[n].size()){ int v=graph[n][j].second; num[v]--; if(num[v]==0) S.push(v); } } vector<ll> dist(N); vector<bool> negative(N,true); while(!L.empty()){ int u=L.front();L.pop(); negative[u]=false; for(auto e:graph[u]){ int v=e.second; dist[v]=min(dist[v],dist[u]+e.first); } } REP(i,N){ if(negative[i]) cout<<"BAN"<<endl; else cout<<B[i]-dist[i]<<endl; } }