Submission #2194065


Source Code Expand

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

using namespace std;

template<class T>bool chmax(T &a, const T &b) { return (a < b) ? (a = b, 1) : 0;}
template<class T>bool chmin(T &a, const T &b) { return (b < a) ? (a = b, 1) : 0;}

using ll = long long;
using R = long double;
const R EPS = 1e-9L; // [-1000,1000]->EPS=1e-8 [-10000,10000]->EPS=1e-7
inline int sgn(const R& r) {return (r > EPS) - (r < -EPS);}
inline R sq(R x) {return sqrt(max(x, 0.0L));}

const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1};
const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1};

// Problem Specific Parameter:

const int limit = 200010;
ll a[limit], b[limit];
const ll inf = 1LL << 60;


multiset<ll> positive, negative;
ll a_total = 0LL, p_total = 0LL;

int n, q;

inline void add(int i) {
	a_total += a[i];
	if (i == 0 or i == 2 * n - 1) return;
	const ll val = b[i] - a[i];
	if (val >= 0) {
		positive.insert(val);
		p_total += val;
	} else {
		negative.insert(val);
	}
}

inline void del(int i) {
	a_total -= a[i];
	if (i == 0 or i == 2 * n - 1) return;
	const ll val = b[i] - a[i];
	if (val >= 0) {
		auto it = positive.find(val);
		positive.erase(it);
		p_total -= val;
	} else {
		auto it = negative.find(val);
		negative.erase(it);
	}
}

int main(void) {
	cin >> n >> q;

	rep(i, 2 * n) cin >> a[i];
	rep(i, 2 * n) cin >> b[i];

	rep(i, 2 * n) a_total += a[i];

	rep(i, 1, 2 * n - 1) {
		const ll val = b[i] - a[i];
		if (val >= 0) {
			positive.insert(val);
			p_total += val;
		} else {
			negative.insert(val);
		}
	}


	rep(loop, q) {
		int p;
		ll x, y;
		cin >> p >> x >> y;

		del(p - 1);
		a[p - 1] = x, b[p - 1] = y;
		add(p - 1);

		ll ans = -inf;
		if (positive.size() % 2 == 0) {
			chmax(ans, a_total + p_total);
		} else {
			const ll mmax = *prev(end(negative));
			const ll pmin = *begin(positive);
			chmax(ans, a_total + p_total + mmax);
			chmax(ans, a_total + p_total - pmin);
		}

		cout << ans << endl;
	}

	return 0;
}

Submission Info

Submission Time
Task C - Paired Parentheses
User Hec
Language C++14 (GCC 5.4.1)
Score 700
Code Size 2659 Byte
Status AC
Exec Time 608 ms
Memory 14208 KB

Judge Result

Set Name Sample Subtask1 Subtask2 All
Score / Max Score 0 / 0 200 / 200 300 / 300 200 / 200
Status
AC × 2
AC × 14
AC × 15
AC × 43
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
Subtask1 00_example_01.txt, s1_01.txt, s1_02.txt, s1_03.txt, s1_04.txt, s1_05.txt, s1_06.txt, s1_07.txt, s1_08.txt, s1_09.txt, s1_10.txt, s1_11.txt, s1_12.txt, s1_13.txt
Subtask2 s2_14.txt, s2_15.txt, s2_16.txt, s2_17.txt, s2_18.txt, s2_19.txt, s2_20.txt, s2_21.txt, s2_22.txt, s2_23.txt, s2_24.txt, s2_25.txt, s2_26.txt, s2_27.txt, s2_28.txt
All 00_example_01.txt, 00_example_02.txt, s1_01.txt, s1_02.txt, s1_03.txt, s1_04.txt, s1_05.txt, s1_06.txt, s1_07.txt, s1_08.txt, s1_09.txt, s1_10.txt, s1_11.txt, s1_12.txt, s1_13.txt, s2_14.txt, s2_15.txt, s2_16.txt, s2_17.txt, s2_18.txt, s2_19.txt, s2_20.txt, s2_21.txt, s2_22.txt, s2_23.txt, s2_24.txt, s2_25.txt, s2_26.txt, s2_27.txt, s2_28.txt, s3_29.txt, s3_30.txt, s3_31.txt, s3_32.txt, s3_33.txt, s3_34.txt, s3_35.txt, s3_36.txt, s3_37.txt, s3_38.txt, s3_39.txt, s3_40.txt, s3_41.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
s1_01.txt AC 1 ms 256 KB
s1_02.txt AC 1 ms 256 KB
s1_03.txt AC 1 ms 256 KB
s1_04.txt AC 1 ms 256 KB
s1_05.txt AC 1 ms 256 KB
s1_06.txt AC 1 ms 256 KB
s1_07.txt AC 1 ms 256 KB
s1_08.txt AC 1 ms 256 KB
s1_09.txt AC 1 ms 256 KB
s1_10.txt AC 1 ms 256 KB
s1_11.txt AC 1 ms 256 KB
s1_12.txt AC 1 ms 256 KB
s1_13.txt AC 1 ms 256 KB
s2_14.txt AC 8 ms 768 KB
s2_15.txt AC 9 ms 896 KB
s2_16.txt AC 132 ms 8832 KB
s2_17.txt AC 104 ms 7424 KB
s2_18.txt AC 193 ms 12800 KB
s2_19.txt AC 191 ms 12800 KB
s2_20.txt AC 190 ms 12800 KB
s2_21.txt AC 193 ms 12800 KB
s2_22.txt AC 8 ms 768 KB
s2_23.txt AC 9 ms 896 KB
s2_24.txt AC 8 ms 768 KB
s2_25.txt AC 236 ms 12800 KB
s2_26.txt AC 236 ms 12800 KB
s2_27.txt AC 235 ms 12800 KB
s2_28.txt AC 234 ms 12800 KB
s3_29.txt AC 199 ms 7040 KB
s3_30.txt AC 293 ms 4480 KB
s3_31.txt AC 162 ms 10240 KB
s3_32.txt AC 511 ms 11136 KB
s3_33.txt AC 200 ms 7040 KB
s3_34.txt AC 599 ms 14208 KB
s3_35.txt AC 608 ms 14208 KB
s3_36.txt AC 582 ms 14208 KB
s3_37.txt AC 575 ms 14208 KB
s3_38.txt AC 584 ms 14208 KB
s3_39.txt AC 574 ms 14208 KB
s3_40.txt AC 249 ms 1024 KB
s3_41.txt AC 254 ms 1024 KB