結果
問題 | No.255 Splarrraaay スプラーレェーーイ |
ユーザー | chocorusk |
提出日時 | 2020-02-09 01:46:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 857 ms / 10,000 ms |
コード長 | 4,234 bytes |
コンパイル時間 | 1,295 ms |
コンパイル使用メモリ | 132,920 KB |
実行使用メモリ | 65,896 KB |
最終ジャッジ日時 | 2024-10-01 05:39:07 |
合計ジャッジ時間 | 10,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 824 ms
65,840 KB |
testcase_01 | AC | 837 ms
65,860 KB |
testcase_02 | AC | 797 ms
65,868 KB |
testcase_03 | AC | 768 ms
65,896 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 815 ms
65,832 KB |
testcase_06 | AC | 820 ms
65,844 KB |
testcase_07 | AC | 842 ms
65,844 KB |
testcase_08 | AC | 857 ms
65,772 KB |
testcase_09 | AC | 813 ms
65,876 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; template<typename Monoid, typename OperatorMonoid=Monoid> struct LazySegmentTree{ using F=function<Monoid(Monoid, Monoid)>; using G=function<Monoid(Monoid, OperatorMonoid, int, int)>; using H=function<OperatorMonoid(OperatorMonoid, OperatorMonoid)>; int sz; vector<Monoid> data; vector<OperatorMonoid> lazy; const F f; const G g; const H h; const Monoid e1; const OperatorMonoid e0; LazySegmentTree(int n, const F f, const G g, const H h, const Monoid &e1, const OperatorMonoid &e0): f(f), g(g), h(h), e1(e1), e0(e0){ sz=1; while(sz<n) sz<<=1; data.resize(2*sz-1, e1); lazy.resize(2*sz-1, e0); } void build(vector<Monoid> v){ for(int i=0; i<v.size(); i++) data[i+sz-1]=v[i]; for(int i=sz-2; i>=0; i--) data[i]=f(data[2*i+1], data[2*i+2]); } void eval(int k, int l, int r){ if(lazy[k]!=e0){ data[k]=g(data[k], lazy[k], l, r); if(k<sz-1){ lazy[2*k+1]=h(lazy[2*k+1], lazy[k]); lazy[2*k+2]=h(lazy[2*k+2], lazy[k]); } } lazy[k]=e0; } void update(int a, int b, const OperatorMonoid &x, int k, int l, int r){ eval(k, l, r); if(r<=a || b<=l) return; if(a<=l && r<=b){ lazy[k]=h(lazy[k], x); eval(k, l, r); }else{ update(a, b, x, 2*k+1, l, (l+r)/2); update(a, b, x, 2*k+2, (l+r)/2, r); data[k]=f(data[2*k+1], data[2*k+2]); } } void update(int a, int b, const OperatorMonoid &x){ return update(a, b, x, 0, 0, sz); } Monoid find(int a, int b, int k, int l, int r){ eval(k, l, r); if(b<=l || r<=a) return e1; if(a<=l && r<=b) return data[k]; else return f(find(a, b, 2*k+1, l, (l+r)/2), find(a, b, 2*k+2, (l+r)/2, r)); } Monoid find(int a, int b){ return find(a, b, 0, 0, sz); } Monoid operator[](const int &k){ return find(k, k+1); } }; const ll MOD=1000000000000000009; int main() { using arr=array<ll, 5>; using Pi=pair<ll, P>; ll n; cin>>n; int q; cin>>q; int x[150010]; ll l[150010], r[150010]; vector<ll> v(2*q); for(int i=0; i<q; i++){ cin>>x[i]>>l[i]>>r[i]; r[i]++; v[2*i]=l[i], v[2*i+1]=r[i]; } sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); int m=v.size(); for(int i=0; i<q; i++){ l[i]=lower_bound(v.begin(), v.end(), l[i])-v.begin(); r[i]=lower_bound(v.begin(), v.end(), r[i])-v.begin(); } auto f=[](arr a, arr b){ arr c={}; for(int i=0; i<5; i++) c[i]=a[i]+b[i]; return c; }; auto g=[&](arr a, Pi p, int l, int r){ if(p.first!=0){ arr b={}; b[p.second.first]=p.first*(v[r]-v[l]); if(!p.second.second) b[p.second.first]+=a[p.second.first]; return b; }else{ return a; } }; arr e={}; Pi e0=Pi(0, P(-1, 0)); auto h=[&](Pi p, Pi q){ if(p==e0) return q; if(p.second.first==q.second.first){ if(q.second.second) return Pi(q.first, P(q.second.first, 1)); else return Pi(p.first+q.first, P(q.second.first, p.second.second)); }else return Pi(q.first, P(q.second.first, 1)); }; LazySegmentTree<arr, Pi> seg(m-1, f, g, h, e, e0); ll ans[5]={}; for(int i=0; i<q; i++){ if(x[i]==0){ arr a=seg.find(l[i], r[i]); int id=0; for(int j=1; j<5; j++){ if(a[id]<a[j]) id=j; } bool dame=0; for(int j=id+1; j<5; j++) if(a[id]==a[j]) dame=1; if(dame) continue; (ans[id]+=a[id])%=MOD; }else{ seg.update(l[i], r[i], Pi(1, P(x[i]-1, 0))); } } arr a=seg.find(0, m-1); for(int i=0; i<5; i++){ (ans[i]+=a[i])%=MOD; cout<<ans[i]<<" "; } cout<<endl; return 0; }