結果

問題 No.1826 Fruits Collecting
ユーザー SSRSSSRS
提出日時 2022-01-28 21:39:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 1,972 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 220,108 KB
実行使用メモリ 23,868 KB
最終ジャッジ日時 2024-06-09 14:33:12
合計ジャッジ時間 10,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 136 ms
11,904 KB
testcase_06 AC 224 ms
18,180 KB
testcase_07 AC 159 ms
13,056 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 219 ms
16,000 KB
testcase_10 AC 161 ms
12,672 KB
testcase_11 AC 155 ms
12,416 KB
testcase_12 AC 57 ms
7,168 KB
testcase_13 AC 30 ms
6,940 KB
testcase_14 AC 47 ms
6,940 KB
testcase_15 AC 361 ms
23,860 KB
testcase_16 AC 345 ms
23,672 KB
testcase_17 AC 338 ms
23,752 KB
testcase_18 AC 344 ms
23,784 KB
testcase_19 AC 345 ms
23,724 KB
testcase_20 AC 344 ms
23,792 KB
testcase_21 AC 348 ms
23,868 KB
testcase_22 AC 359 ms
23,680 KB
testcase_23 AC 350 ms
23,784 KB
testcase_24 AC 345 ms
23,704 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,948 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 73 ms
7,680 KB
testcase_31 AC 138 ms
11,904 KB
testcase_32 AC 73 ms
8,576 KB
testcase_33 AC 261 ms
20,604 KB
testcase_34 AC 214 ms
16,768 KB
testcase_35 AC 52 ms
6,940 KB
testcase_36 AC 259 ms
20,484 KB
testcase_37 AC 165 ms
15,872 KB
testcase_38 AC 115 ms
12,800 KB
testcase_39 AC 186 ms
15,104 KB
testcase_40 AC 232 ms
17,792 KB
testcase_41 AC 52 ms
6,944 KB
testcase_42 AC 8 ms
6,944 KB
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <typename T>
struct segment_tree{
	int N;
	vector<T> ST;
	segment_tree(int n){
		N = 1;
		while (N < n){
			N *= 2;
		}
		ST = vector<T>(N * 2 - 1, 0);
	}
	T operator [](int k){
		return ST[N - 1 + k];
	}
	void update(int k, T x){
		k += N - 1;
		ST[k] = x;
		while (k > 0){
			k = (k - 1) / 2;
			ST[k] = max(ST[k * 2 + 1], ST[k * 2 + 2]);
		}
	}
	T range_max(int L, int R, int i, int l, int r){
		if (R <= l || r <= L){
			return 0;
		} else if (L <= l && r <= R){
			return ST[i];
		} else {
			int m = (l + r) / 2;
			return max(range_max(L, R, i * 2 + 1, l, m), range_max(L, R, i * 2 + 2, m, r));
		}
	}
	T range_max(int L, int R){
		return range_max(L, R, 0, 0, N);
	}
	T all(){
		return ST[0];
	}
};
int main(){
  int N;
  cin >> N;
  vector<int> T(N), X(N), V(N);
  for (int i = 0; i < N; i++){
    cin >> T[i] >> X[i] >> V[i];
  }
  vector<long long> A(N), B(N);
  for (int i = 0; i < N; i++){
    A[i] = T[i] + X[i];
    B[i] = T[i] - X[i];
  }
  vector<long long> A2 = A;
  sort(A2.begin(), A2.end());
  A2.erase(unique(A2.begin(), A2.end()), A2.end());
  for (int i = 0; i < N; i++){
    A[i] = lower_bound(A2.begin(), A2.end(), A[i]) - A2.begin();
  }
  vector<long long> B2 = B;
  sort(B2.begin(), B2.end());
  B2.erase(unique(B2.begin(), B2.end()), B2.end());
  for (int i = 0; i < N; i++){
    B[i] = lower_bound(B2.begin(), B2.end(), B[i]) - B2.begin();
  }
  int cnt1 = A2.size(), cnt2 = B2.size();
  vector<vector<pair<int, int>>> P(cnt1);
  for (int i = 0; i < N; i++){
    if (A2[A[i]] >= 0 && B2[B[i]] >= 0){
      P[A[i]].push_back(make_pair(B[i], i));
    }
  }
  segment_tree<long long> dp(cnt2);
  for (int i = 0; i < cnt1; i++){
    sort(P[i].begin(), P[i].end());
    int cnt = P[i].size();
    for (int j = 0; j < cnt; j++){
      int pos = P[i][j].first;
      int value = V[P[i][j].second];
      dp.update(pos, dp.range_max(0, pos + 1) + value);
    }
  }
  cout << dp.all() << endl;
}
0