結果
| 問題 |
No.230 Splarraay スプラレェーイ
|
| コンテスト | |
| ユーザー |
kei
|
| 提出日時 | 2018-09-24 23:30:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 155 ms / 5,000 ms |
| コード長 | 4,520 bytes |
| コンパイル時間 | 1,916 ms |
| コンパイル使用メモリ | 176,076 KB |
| 実行使用メモリ | 11,264 KB |
| 最終ジャッジ日時 | 2024-09-24 17:28:16 |
| 合計ジャッジ時間 | 4,180 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; }
template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; }
template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; }
template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; }
/*
<url:https://yukicoder.me/problems/no/230>
問題文============================================================
=================================================================
解説=============================================================
================================================================
*/
/*
update(s,t,x): [s,t) をxに変更する。
query(s,t): [s,t) の総和を出力する。
*/
const ll INIT = 0;
const ll NIL = LLONG_MAX;
struct SegTree {
int N;
ll init_v;
vector<ll> node, lazy;
SegTree(int _N):init_v(INIT) {
N = 1;
while (N < _N) N *= 2;
node.resize(2 * N - 1, init_v);
lazy.resize(2 * N - 1, NIL);
}
SegTree(int _N, vector<ll>& a){
N = 1;
while (N < _N) N *= 2;
node.resize(2 * N - 1, init_v);
lazy.resize(2 * N - 1, NIL);
for(int i = 0; i < _N; i++){ node[i+N-1] = a[i]; }
build();
}
ll merge(ll l,ll r){
return l + r;
}
void build(){ for(int k = N - 2; k >= 0; k--){ node[k] = node[2 * k + 1] + node[2 * k + 2];} }
void lazy_evaluate(int k) {
if (lazy[k] == NIL) return;
node[k] = lazy[k];
if (k < N - 1) {
lazy[2 * k + 1] = lazy[k]/2;
lazy[2 * k + 2] = lazy[k]/2;
}
lazy[k] = NIL;
}
/* [a,b) 引数の範囲に注意!! s~tまでを更新→update(s,t+1,~) */
ll update(int a, int b, ll x) { return update(a, b, 0, 0, N, x); }
ll update(int a, int b, int k, int l, int r, ll x) {
if (r <= a || b <= l) {
lazy_evaluate(k); // nodeの値を見るときは必ず遅延評価を更新する
return node[k]; // updateでは全体の中の最小を見つける必要があるため, [l,r)外になっても値を参照
}
if (a <= l && r <= b) {
lazy[k] = (r-l)*x;
lazy_evaluate(k);
return node[k];
}
else {
lazy_evaluate(k);
ll vl = update(a, b, 2 * k + 1, l, (l + r) / 2, x);
ll vr = update(a, b, 2 * k + 2, (l + r) / 2, r, x);
return node[k] = merge(vl,vr);
}
}
/* [a,b) 引数の範囲に注意!! */
ll query(int a, int b) { return query(a, b, 0, 0, N); }
ll query(int a, int b, int k, int l, int r) {
if (r <= a || b <= l) return init_v;
if (a <= l && r <= b) {
lazy_evaluate(k);
return node[k];
}
else {
lazy_evaluate(k);
ll vl = query(a, b, 2 * k + 1, l, (l + r) / 2);
ll vr = query(a, b, 2 * k + 2, (l + r) / 2, r);
return merge(vl,vr);
}
}
};
vector<ll> solve(){
vector<ll> res = {0,0};
int N; cin >> N;
int Q; cin >> Q;
SegTree STA(N),STB(N);
while(Q--){
int com,l,r; cin >> com >> l >> r;
if(com == 0){
ll scoreA = STA.query(l,r+1);
ll scoreB = STB.query(l,r+1);
if(scoreA == scoreB) continue;
if(scoreA > scoreB){
res[0] += scoreA;
}else{
res[1] += scoreB;
}
}else if(com == 1){
STA.update(l,r+1,1);
STB.update(l,r+1,0);
//ST.update(l,r+1,1);
}else{
STA.update(l,r+1,0);
STB.update(l,r+1,1);
}
}
res[0] += STA.query(0,N);
res[1] += STB.query(0,N);
return res;
}
int main(void) {
cin.tie(0); ios_base::sync_with_stdio(false);
cout << solve() << endl;
return 0;
}
kei