結果

問題 No.2861 Slime Party
ユーザー square1001square1001
提出日時 2024-07-25 18:28:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,215 bytes
コンパイル時間 1,168 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 20,044 KB
最終ジャッジ日時 2024-07-25 18:29:12
合計ジャッジ時間 24,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
20,044 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 181 ms
16,180 KB
testcase_21 AC 154 ms
16,052 KB
testcase_22 AC 169 ms
16,180 KB
testcase_23 AC 151 ms
16,180 KB
testcase_24 AC 162 ms
16,048 KB
testcase_25 AC 150 ms
16,180 KB
testcase_26 AC 146 ms
16,048 KB
testcase_27 AC 149 ms
16,056 KB
testcase_28 AC 151 ms
16,052 KB
testcase_29 AC 151 ms
16,052 KB
testcase_30 AC 170 ms
16,176 KB
testcase_31 AC 170 ms
16,056 KB
testcase_32 AC 168 ms
16,176 KB
testcase_33 AC 170 ms
16,184 KB
testcase_34 AC 162 ms
16,052 KB
testcase_35 AC 156 ms
17,076 KB
testcase_36 AC 175 ms
17,208 KB
testcase_37 AC 162 ms
17,208 KB
testcase_38 AC 164 ms
17,204 KB
testcase_39 AC 174 ms
17,204 KB
testcase_40 AC 173 ms
15,248 KB
testcase_41 AC 163 ms
15,232 KB
testcase_42 AC 160 ms
15,184 KB
testcase_43 AC 158 ms
15,216 KB
testcase_44 AC 165 ms
15,360 KB
testcase_45 AC 153 ms
17,092 KB
testcase_46 AC 158 ms
17,076 KB
testcase_47 AC 167 ms
17,076 KB
testcase_48 AC 166 ms
17,080 KB
testcase_49 AC 168 ms
17,200 KB
testcase_50 TLE -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
using namespace std;

class query {
public:
	int t, a; long long b;
	query() : t(-1), a(-1), b(-1) {}
};

class node {
public:
	int p, l, r;
	node() : p(-1), l(-1), r(-1) {}
};

class binary_tree {
public:
	int root;
	vector<node> v;
	binary_tree(int n) : root(-1), v(vector<node>(n)) {}
};

binary_tree cartesian_tree(int N, const vector<long long>& A) {
	binary_tree T(N);
	vector<int> st;
	int pos = 0;
	for (int i = 0; i < N; i++) {
		int u = -1;
		while (!st.empty() && A[st.back()] < A[i]) {
			u = st.back();
			st.pop_back();
		}
		if (u != -1) {
			T.v[i].l = u;
			T.v[u].p = i;
		}
		if (!st.empty()) {
			T.v[i].p = st.back();
			T.v[st.back()].r = i;
		}
		st.push_back(i);
	}
	T.root = st[0];
	return T;
}

vector<long long> solve(int N, int Q, long long L, const vector<long long>& A, const vector<long long>& X, const vector<query>& qs) {
	binary_tree T = cartesian_tree(N, A);
	vector<long long> s(N);
	for (int i = 0; i < N; i++) {
		int pos = i;
		while (pos != -1) {
			s[pos] -= X[i];
			pos = T.v[pos].p;
		}
		if (i != T.root) {
			s[i] += A[T.v[i].p];
		}
	}
	vector<long long> CX = X;
	vector<long long> ans;
	for (query q : qs) {
		if (q.t == 1) {
			long long d = q.b - CX[q.a];
			CX[q.a] = q.b;
			int pos = q.a;
			while (pos != -1) {
				s[pos] -= d;
				pos = T.v[pos].p;
			}
		}
		if (q.t == 2) {
			int base = (A[q.a] < A[q.a + 1] ? q.a : q.a + 1);
			if (A[base] < L) {
				int pos = base;
				while (pos != T.root) {
					if (s[pos] >= L) {
						break;
					}
					pos = T.v[pos].p;
				}
				ans.push_back(-(s[pos] - (pos != T.root ? A[T.v[pos].p] : 0)) + L);
			} else {
				ans.push_back(L);
			}
		}
	}
	return ans;
}

int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int N, Q; long long L;
	cin >> N >> Q >> L;
	vector<long long> A(N), X(N);
	for (int i = 0; i < N; i++) {
		cin >> A[i];
	}
	for (int i = 0; i < N; i++) {
		cin >> X[i];
	}
	vector<query> qs(Q);
	for (int i = 0; i < Q; i++) {
		cin >> qs[i].t >> qs[i].a;
		if (qs[i].t == 1) {
			cin >> qs[i].b;
		}
		qs[i].a--;
	}
	vector<long long> ans = solve(N, Q, L, A, X, qs);
	for (int i = 0; i < int(ans.size()); i++) {
		cout << ans[i] << '\n';
	}
	return 0;
}
0