結果

問題 No.3017 交互浴
ユーザー じきお。
提出日時 2025-02-09 02:49:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 4,879 bytes
コンパイル時間 3,810 ms
コンパイル使用メモリ 282,692 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2025-02-09 02:50:19
合計ジャッジ時間 18,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 55
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...)
#endif
#include <bits/stdc++.h>
using namespace std;
template <typename S, typename T>
struct Intervals {
// 使 -INFINF
static constexpr S INF = numeric_limits<S>::max() / 2;
static constexpr S L = -INF, R = INF;
T none_val; //
int total_num; // none_val
S total_len; // none_val
map<S, T> data; // key: key key
// [L,R) none_val
Intervals(T nv = -1) : none_val(nv), total_num(0), total_len(0) { data[L] = none_val; }
// --- split ---
// pos
// [l,r) [l,pos) [pos,r)
typename map<S, T>::iterator split(S pos) {
auto it = data.lower_bound(pos);
if (it != data.end() && it->first == pos) return it;
it--;
T v = it->second;
// [l, r) [l,pos) [pos,r)
auto res = data.emplace(pos, v).first;
// none_val 1 total_num
if (v != none_val) total_num++;
return res;
}
// --- set ---
// [l, r) v
void set(S l, S r, T v) {
l = max(l, L), r = min(r, R);
if (l >= r) return;
// [l,r)
auto itr_l = split(l), itr_r = split(r);
// [l,r) total_num, total_len 調
for (auto it = itr_l; it != itr_r;) {
if (it->second != none_val) {
S seg_l = it->first;
auto it2 = next(it);
S seg_r = (it2 == data.end() ? R : it2->first);
total_len -= (seg_r - seg_l);
total_num--; //
}
it = data.erase(it);
}
// [l, r)
auto it = data.emplace(l, v).first;
if (v != none_val) {
total_len += (r - l);
total_num++;
}
// --- ---
//
if (it != data.begin()) {
auto it_prev = prev(it);
if (it_prev->second == v) {
// [L, l) [l, r) l
data.erase(it);
total_num--; //
l = it_prev->first; // [it_prev->first, r)
it = it_prev;
}
}
//
auto it_next = next(it);
if (it_next != data.end() && it_next->second == v) {
data.erase(it_next);
total_num--;
}
}
// --- get_value ---
// i [i, i + 1)
T get_value(S i) {
auto it = prev(data.upper_bound(i));
return it->second;
}
// --- get () ---
// i [l, r) v
tuple<S, S, T> get(S i) {
auto it = prev(data.upper_bound(i));
S l = it->first;
auto it2 = next(it);
S r = (it2 == data.end() ? R : it2->first);
return make_tuple(l, r, it->second);
}
// --- get () ---
// [l,r) run-length
vector<tuple<S, S, T>> get(S l, S r) {
l = max(l, L), r = min(r, R);
vector<tuple<S, S, T>> res;
if (l >= r) return res;
auto it = split(l), itr_r = split(r);
while (it != itr_r) {
S seg_l = it->first;
auto it2 = next(it);
S seg_r = (it2 == data.end() ? R : it2->first);
res.emplace_back(seg_l, seg_r, it->second);
++it;
}
return res;
}
};
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << fixed << setprecision(20);
int N;
cin >> N;
vector<int> H(N);
for (int i = 0; i < N; i++) cin >> H[i];
Intervals<int, int> I(0);
for (int i = 0; i < N; i++) {
if (i & 1) {
I.set(0, H[i], 0); //
} else {
I.set(0, H[i], 1); //
}
cout << I.total_len << "\n";
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0