Submission #2559133


Source Code Expand

// 基本テンプレート
 
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <cfloat>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <fstream>
#include <functional>
using namespace std;
 
#define rep(i,a,n) for(int (i)=(a); (i)<(n); (i)++)
#define repq(i,a,n) for(int (i)=(a); (i)<=(n); (i)++)
#define repr(i,a,n) for(int (i)=(a); (i)>=(n); (i)--)
#define debug(...) fprintf(stderr, __VA_ARGS__)
#define int long long int
 
template<typename T> void chmax(T &a, T b) {a = max(a, b);}
template<typename T> void chmin(T &a, T b) {a = min(a, b);}
template<typename T> void chadd(T &a, T b) {a = a + b;}
 
typedef pair<int, int> pii;
typedef long long ll;
 
int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};
const ll INF = 1001001001001001LL;
const ll MOD = 1000000007LL;

int N, Q;
 
signed main() {
    cin >> N >> Q;

    int L = 2*N;
    vector<int> A(L), B(L);
    for(int i=0; i<L; i++) cin >> A[i];
    for(int i=0; i<L; i++) cin >> B[i];

    int asum = accumulate(A.begin(), A.end(), 0LL);
    set< pair<int, int> > more, less;

    // B - A >= 0 全部取った時の和
    int cur_max = 0;
    for(int i=1; i<L-1; i++) {
        int diff = B[i] - A[i];
        if(diff >= 0) {
            more.insert(make_pair(diff, i));
            cur_max += diff;
        }
        else {
            less.insert(make_pair(-diff, i));
        }
    }

    for(int i=0; i<Q; i++) {
        int p, x, y; cin >> p >> x >> y; p--;
        asum -= A[p];

        if(p != 0 && p != L-1) {
            pair<int, int> elem_more = make_pair(B[p] - A[p], p);
            pair<int, int> elem_less = make_pair(A[p] - B[p], p);
            if(more.count(elem_more)) {
                more.erase(elem_more);
                cur_max -= B[p] - A[p];
            }
            if(less.count(elem_less)) {
                less.erase(elem_less);
            }
        }

        A[p] = x, B[p] = y;
        asum += A[p];

        if(p != 0 && p != L-1) {
            int diff = B[p] - A[p];
            if(diff >= 0) {
                more.insert(make_pair(diff, p));
                cur_max += diff;
            }
            else {
                less.insert(make_pair(-diff, p));
            }
        }

        int sz = more.size(), tmp_max = cur_max;
        for(auto it=more.begin(); it!=more.end(); it++) {
            if(sz % 2 == 0) break;
            sz--;
            // printf("reduce: %lld\n", it -> first);
            tmp_max -= it -> first;
        }
        if(more.size() % 2 == 1 && less.size()) chmax(tmp_max, cur_max - less.begin()->first);

        // printf("asum = %lld, tmp_max = %lld\n", asum, tmp_max);
        cout << asum + tmp_max << endl;
    }
    return 0;
}

Submission Info

Submission Time
Task C - Paired Parentheses
User tsutaj
Language C++14 (GCC 5.4.1)
Score 700
Code Size 3087 Byte
Status AC
Exec Time 583 ms
Memory 17280 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 9 ms 896 KB
s2_15.txt AC 9 ms 1024 KB
s2_16.txt AC 133 ms 11008 KB
s2_17.txt AC 108 ms 9088 KB
s2_18.txt AC 197 ms 15872 KB
s2_19.txt AC 197 ms 15872 KB
s2_20.txt AC 197 ms 15872 KB
s2_21.txt AC 198 ms 15872 KB
s2_22.txt AC 9 ms 896 KB
s2_23.txt AC 9 ms 1024 KB
s2_24.txt AC 9 ms 896 KB
s2_25.txt AC 241 ms 15872 KB
s2_26.txt AC 242 ms 15872 KB
s2_27.txt AC 241 ms 15872 KB
s2_28.txt AC 242 ms 15872 KB
s3_29.txt AC 203 ms 8704 KB
s3_30.txt AC 293 ms 5376 KB
s3_31.txt AC 168 ms 12672 KB
s3_32.txt AC 502 ms 13568 KB
s3_33.txt AC 200 ms 8704 KB
s3_34.txt AC 575 ms 17280 KB
s3_35.txt AC 583 ms 17280 KB
s3_36.txt AC 558 ms 17280 KB
s3_37.txt AC 558 ms 17280 KB
s3_38.txt AC 563 ms 17280 KB
s3_39.txt AC 573 ms 17280 KB
s3_40.txt AC 237 ms 1024 KB
s3_41.txt AC 237 ms 1024 KB