結果
問題 | No.1014 competitive fighting |
ユーザー | はまやんはまやん |
提出日時 | 2020-03-21 12:34:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 3,408 bytes |
コンパイル時間 | 2,374 ms |
コンパイル使用メモリ | 221,508 KB |
実行使用メモリ | 46,320 KB |
最終ジャッジ日時 | 2024-07-07 12:56:40 |
合計ジャッジ時間 | 8,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,724 KB |
testcase_01 | AC | 4 ms
7,680 KB |
testcase_02 | AC | 4 ms
7,808 KB |
testcase_03 | AC | 4 ms
7,680 KB |
testcase_04 | AC | 4 ms
7,552 KB |
testcase_05 | AC | 120 ms
28,012 KB |
testcase_06 | AC | 122 ms
27,760 KB |
testcase_07 | AC | 122 ms
27,868 KB |
testcase_08 | AC | 123 ms
28,016 KB |
testcase_09 | AC | 121 ms
27,764 KB |
testcase_10 | AC | 135 ms
46,320 KB |
testcase_11 | AC | 73 ms
20,208 KB |
testcase_12 | AC | 117 ms
27,760 KB |
testcase_13 | AC | 57 ms
17,392 KB |
testcase_14 | AC | 55 ms
16,872 KB |
testcase_15 | AC | 62 ms
17,900 KB |
testcase_16 | AC | 6 ms
8,064 KB |
testcase_17 | AC | 24 ms
11,740 KB |
testcase_18 | AC | 99 ms
25,984 KB |
testcase_19 | AC | 119 ms
27,580 KB |
testcase_20 | AC | 44 ms
15,928 KB |
testcase_21 | AC | 94 ms
25,200 KB |
testcase_22 | AC | 69 ms
18,668 KB |
testcase_23 | AC | 28 ms
12,396 KB |
testcase_24 | AC | 29 ms
12,488 KB |
testcase_25 | AC | 9 ms
8,704 KB |
testcase_26 | AC | 90 ms
24,948 KB |
testcase_27 | AC | 24 ms
11,628 KB |
testcase_28 | AC | 26 ms
11,884 KB |
testcase_29 | AC | 4 ms
7,936 KB |
testcase_30 | AC | 115 ms
27,464 KB |
testcase_31 | AC | 94 ms
25,352 KB |
testcase_32 | AC | 5 ms
7,808 KB |
testcase_33 | AC | 7 ms
8,448 KB |
testcase_34 | AC | 60 ms
19,692 KB |
testcase_35 | AC | 74 ms
20,212 KB |
testcase_36 | AC | 56 ms
19,316 KB |
testcase_37 | AC | 5 ms
8,032 KB |
testcase_38 | AC | 43 ms
14,188 KB |
testcase_39 | AC | 25 ms
10,732 KB |
testcase_40 | AC | 43 ms
14,060 KB |
testcase_41 | AC | 34 ms
13,800 KB |
testcase_42 | AC | 73 ms
20,064 KB |
testcase_43 | AC | 8 ms
8,320 KB |
testcase_44 | AC | 67 ms
19,824 KB |
testcase_45 | AC | 39 ms
13,932 KB |
testcase_46 | AC | 10 ms
9,088 KB |
testcase_47 | AC | 23 ms
10,856 KB |
testcase_48 | AC | 58 ms
19,440 KB |
testcase_49 | AC | 6 ms
8,040 KB |
testcase_50 | AC | 69 ms
19,828 KB |
testcase_51 | AC | 40 ms
14,056 KB |
testcase_52 | AC | 7 ms
8,056 KB |
testcase_53 | AC | 116 ms
27,800 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan0 / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ struct DirectedGraphRangeEdge { int NV; vector<vector<int>> E; void init(int n) { NV = 1; while (NV < n) NV *= 2; E.resize(NV * 2); rep(i, 1, NV) { E[i].push_back(i * 2); E[i].push_back(i * 2 + 1); } } // [x, y) void add(int from, int x, int y) { add(from + NV, x, y, 0, NV, 1); } void add(int from, int x, int y, int l, int r, int k) { if (r <= x || y <= l) return; if (x <= l && r <= y) { E[from].push_back(k); return; } add(from, x, y, l, (l + r) / 2, k * 2); add(from, x, y, (l + r) / 2, r, k * 2 + 1); } }; int N; DirectedGraphRangeEdge dgre; vector<tuple<int, int, int, int>> ABCi; ll ans[101010]; //--------------------------------------------------------------------------------------------------- ll memo[1 << 19]; // -1: not visited -2: pending 0<=: cached infl: BAN ll dfs(int cu) { if (0 <= memo[cu]) return memo[cu]; if (memo[cu] == -2) return memo[cu] = infl; memo[cu] = -2; ll res = 0; fore(to, dgre.E[cu]) chmax(res, dfs(to)); if (res == infl) return infl; if (dgre.NV <= cu) res += get<1>(ABCi[cu - dgre.NV]); return memo[cu] = res; } //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; dgre.init(N); rep(i, 0, N) { int a, b, c; cin >> a >> b >> c; ABCi.push_back(make_tuple(a, b, c, i)); } sort(all(ABCi)); rep(i, 0, N) { int b, c, _; tie(_, b, c, _) = ABCi[i]; int idx = lower_bound(all(ABCi), make_tuple(b - c + 1, -1, -1, -1)) - ABCi.begin(); if (i < idx) { if (0 < i) dgre.add(i, 0, i); if (i + 1 < idx) dgre.add(i, i + 1, idx); } else dgre.add(i, 0, idx); } rep(i, 0, 1 << 19) memo[i] = -1; rep(i, 0, N) ans[get<3>(ABCi[i])] = dfs(i + dgre.NV); rep(i, 0, N) { if (ans[i] == infl) printf("BAN\n"); else printf("%lld\n", ans[i]); } }