답안 #1002666

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1002666 2024-06-19T17:45:02 Z mansur Foehn Phenomena (JOI17_foehn_phenomena) C++17
0 / 100
69 ms 9812 KB
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
//#pragma GCC optimize("Ofast,unroll-loops,fast-math,O3")
 
#include<bits/stdc++.h>	
 
using namespace std;
 
#define all(a) a.begin(), a.end()                                                   
#define rall(a) a.rbegin(), a.rend()                 
#define sz(a) (int)a.size()
#define s second
#define f first
 
using ll = long long;
using pii = pair<int, int>;                                                                                  
using pll = pair<ll, ll>;                                                                                    
                                                                                                             
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());                                      
     
vector<pii> rid = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
vector<pii> dir = {{-1, -1}, {-1, 1}, {1, -1}, {1, 1}};
 
const int N = 5e6 + 1, mod = 998244353;
 
const ll inf = 1e9;
 
double eps = 1e-15;
                                                
bool flg = 0;

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

main() {
	//freopen("input.txt", "r", stdin);                                                                                     
	//freopen("output.txt", "w", stdout);                                                                                     
	ios_base::sync_with_stdio(0);	                                                                                       
	cin.tie(0);
	int tp = 1;
	if (flg) cin >> tp;
	while (tp--) {  	
		slv();
	}
}
//wenomechainsama      

Compilation message

foehn_phenomena.cpp:62:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   62 | main() {
      | ^~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Incorrect 1 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 59 ms 8788 KB Output is correct
2 Correct 69 ms 9480 KB Output is correct
3 Incorrect 63 ms 9812 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Incorrect 1 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -