結果
問題 | No.255 Splarrraaay スプラーレェーーイ |
ユーザー | FF256grhy |
提出日時 | 2017-07-19 23:35:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,944 bytes |
コンパイル時間 | 1,884 ms |
コンパイル使用メモリ | 181,848 KB |
実行使用メモリ | 33,752 KB |
最終ジャッジ日時 | 2024-10-08 14:39:23 |
合計ジャッジ時間 | 18,786 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,670 ms
32,532 KB |
testcase_01 | AC | 1,697 ms
32,452 KB |
testcase_02 | AC | 1,518 ms
33,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1,511 ms
32,388 KB |
testcase_06 | AC | 1,503 ms
32,396 KB |
testcase_07 | AC | 1,519 ms
32,440 KB |
testcase_08 | AC | 1,524 ms
32,964 KB |
testcase_09 | AC | 1,516 ms
33,472 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incID(i, l, r) for(int i = (l) ; i < (r); i++) #define incII(i, l, r) for(int i = (l) ; i <= (r); i++) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--) #define decII(i, l, r) for(int i = (r) ; i >= (l); i--) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define UB upper_bound #define LB lower_bound #define PQ priority_queue #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() #define FOR(it, v) for(auto it = v.begin(); it != v.end(); ++it) #define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it) template<typename T> bool setmin(T & a, T b) { if(b < a) { a = b; return true; } else { return false; } } template<typename T> bool setmax(T & a, T b) { if(b > a) { a = b; return true; } else { return false; } } template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } } template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } } template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } // ---- ---- const LL Q = 150000; LL n, q, x[Q], l[Q], r[Q]; vector<LL> v; map<LL, LL> id; const LL C = 601; // 601 const LL N = 500; // 500 LL cn[C]; // full の色の数 pair<LL, LL> f[C]; pair<LL, LL> p[C][N]; LL ps[C][6]; // part だけの総和 LL ans[6], MOD = 1e18 + 9; LL val(LL i) { return (i < v.size() ? v[i] : v.back()); } void fall(LL i) { if(cn[i] == 0) { return; } inc(j, N) { p[i][j] = MP(f[i].FI, f[i].SE + (cn[i] == 1 && p[i][j].FI == f[i].FI ? p[i][j].SE : 0)); } inc1(j, 5) { ps[i][j] = 0; } inc(j, N) { ps[i][p[i][j].FI] += p[i][j].SE * (val(i * N + j + 1) - val(i * N + j)); } cn[i] = 0; f[i] = MP(0, 0); } void count() { inc(i, C) { fall(i); } inc(i, C) { inc1(j, 5) { (ans[j] += ps[i][j]) %= MOD; } } } void solve(LL x, LL l, LL r) { LL sum[6]; inc1(i, 5) { sum[i] = 0; } inc(i, C) { LL il = i * N; LL ir = (i + 1) * N; if(ir <= l || r <= il) { continue; } if(l <= il && ir <= r) { // full if(x == 0) { sum[f[i].FI] += f[i].SE * (val(ir) - val(il)); if(cn[i] == 1) { sum[f[i].FI] += ps[i][f[i].FI]; } if(cn[i] == 0) { inc1(j, 5) { sum[j] += ps[i][j]; } } } else { if(f[i].FI == x) { f[i].SE++; } else { f[i] = MP(x, 1); cn[i]++; } } } else { // part if(x != 0) { fall(i); } LL b = max(l, il); LL e = min(r, ir); assert(b < e); incID(jj, b, e) { LL j = jj % N; LL w = val(jj + 1) - val(jj); if(x == 0) { sum[f[i].FI] += f[i].SE * w; sum[p[i][j].FI] += (cn[i] == 0 || (cn[i] == 1 && p[i][j].FI == f[i].FI) ? p[i][j].SE * w : 0); } else { if(p[i][j].FI != x) { ps[i][p[i][j].FI] -= p[i][j].SE * w; p[i][j].SE = 0; } p[i][j].FI = x; p[i][j].SE++; ps[i][x] += w; } } } } if(x == 0) { vector<pair<LL, LL>> vp; inc1(i, 5) { vp.EB(sum[i], i); assert(sum[i] <= 1.5e18); } sort(RALL(vp)); if(vp[0].FI != vp[1].FI) { (ans[vp[0].SE] += vp[0].FI) %= MOD; } } } int main() { cin >> n >> q; inc(i, q) { cin >> x[i] >> l[i] >> r[i]; r[i]++; } inc(i, q) { v.PB(l[i]); v.PB(r[i]); } sort(ALL(v)); v.erase(unique(ALL(v)), v.end()); inc(i, v.size()) { id[v[i]] = i; } assert(v.size() <= Q * 2); assert(v.size() <= n + 1); // cout << "[ " << v.size() << " ]" << endl; inc(i, q) { solve(x[i], id[l[i]], id[r[i]]); } count(); inc1(i, 5) { cout << (i == 1 ? "" : " ") << ans[i]; } cout << endl; return 0; }