Submission #1051602

#TimeUsernameProblemLanguageResultExecution timeMemory
1051602dilanyanFoehn Phenomena (JOI17_foehn_phenomena)C++17
100 / 100
75 ms8532 KiB
//-------------dilanyan------------\\ 
 
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
 
//------------------Kargpefines--------------------\\ 
 
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set

void KarginSet(string name = "") {
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    if (name.size()) {
        freopen((name + ".in").c_str(), "r", stdin);
        freopen((name + ".out").c_str(), "w", stdout);
    }
}
 
//-------------------KarginConstants------------------\\ 
 
const ll mod = 1e9 + 7;
const ll inf = 2e18;
 
//-------------------KarginCode-----------------------\\ 
 
const int N = 300006, M = 1000005;

ll a[N], pref[N];

void KarginSolve() {
    ll n, q, s, t;
    cin >> n >> q >> s >> t;
    for (int i = 0;i <= n;i++) {
        cin >> a[i];
    }
    ll ans = 0;
    for (int i = 0;i < n;i++) {
        pref[i] = a[i + 1] - a[i];
        if (pref[i] < 0) ans -= t * pref[i];
        else  ans -= s * pref[i];
    }
    for (int i = 0;i < q;i++) {
        int l, r, v;
        cin >> l >> r >> v;
        if (pref[l - 1] > 0) {
            pref[l - 1] += v;
            ans -= s * v;
            if (pref[l - 1] < 0) {
                ans -= (-s + t) * pref[l - 1];
            }
        }
        else {
            pref[l - 1] += v;
            ans -= t * v;
            if (pref[l - 1] > 0) {
                ans -= (s - t) * pref[l - 1];
            }
        }
        if (r != n) {
            if (pref[r] > 0) {
                pref[r] -= v;
                ans += s * v;
                if (pref[r] < 0) {
                    ans += (s - t) * pref[r];
                }
            }
            else {
                pref[r] -= v;
                ans += t * v;
                if (pref[r] > 0) {
                    ans += (-s + t) * pref[r];
                }
            }
        }
        cout << ans << '\n';
    }
}

int main() {
    KarginSet();
    int test = 1;
    //cin >> test;
    while (test--) {
        KarginSolve();
    }
    return 0;
} 

Compilation message (stderr)

foehn_phenomena.cpp:1:1: warning: multi-line comment [-Wcomment]
    1 | //-------------dilanyan------------\\
      | ^
foehn_phenomena.cpp:8:1: warning: multi-line comment [-Wcomment]
    8 | //------------------Kargpefines--------------------\\
      | ^
foehn_phenomena.cpp:27:1: warning: multi-line comment [-Wcomment]
   27 | //-------------------KarginConstants------------------\\
      | ^
foehn_phenomena.cpp:32:1: warning: multi-line comment [-Wcomment]
   32 | //-------------------KarginCode-----------------------\\
      | ^
foehn_phenomena.cpp: In function 'void KarginSet(std::string)':
foehn_phenomena.cpp:22:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   22 |         freopen((name + ".in").c_str(), "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
foehn_phenomena.cpp:23:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   23 |         freopen((name + ".out").c_str(), "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...