Notes
![]() ![]() Notes - notes.io |
using namespace std;
#define ff first
#define ss second
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pi;
typedef pair<long long, long long> pl;
const int MOD = 1e9 + 7;
const ll INF = 1e18;
const double EPS = 1e-6;
const int MAX_N = 5e5 + 5;
struct SegmentTree {
int N;
vector<int> maxi, left, right, delta, len; //delta -> -1 = empty, 1 = full, 0 = nothing
SegmentTree() {}
SegmentTree(int N) {
this->N = 1;
while (this->N < N) this->N <<= 1;
maxi.resize(2 * this->N + 1);
left.resize(2 * this->N + 1);
right.resize(2 * this->N + 1);
delta.resize(2 * this->N + 1);
len.resize(2 * this->N + 1);
//you don't need to init unless default values are not zero
init(1, 0, N - 1);
delta[1] = 1;
}
void update(int l, int r, int val) {update(1, 0, N - 1, l, r, val);} //inclusive range
int query(int sz) {return query(1, 0, N - 1, sz);} //inclusive range
void init(int i, int lo, int hi) {
//if default segtree values are not zero, initialize node i
len[i] = hi - lo + 1;
if (lo == hi) return;
int m = (lo + hi) / 2;
init(2 * i, lo, m);
init(2 * i + 1, m + 1, hi);
}
int getMaxi(int i) {
if (delta[i] == -1) return len[i];
if (delta[i] == 1) return 0;
return maxi[i];
}
int getL(int i) {
if (delta[i] == -1) return len[i];
if (delta[i] == 1) return 0;
return left[i];
}
int getR(int i) {
if (delta[i] == -1) return len[i];
if (delta[i] == 1) return 0;
return right[i];
}
void push(int i) {
delta[2 * i] = delta[i];
delta[2 * i + 1] = delta[i];
delta[i] = 0;
}
void pull(int i) {
maxi[i] = max({getMaxi(2 * i), getMaxi(2 * i + 1), getR(2 * i) + getL(2 * i + 1)});
if (getL(2 * i) == len[2 * i]) {
left[i] = len[2 * i] + getL(2 * i + 1);
}
else {
left[i] = getL(2 * i);
}
if (getR(2 * i + 1) == len[2 * i + 1]) {
right[i] = getR(2 * i) + len[2 * i + 1];
}
else {
right[i] = getR(2 * i + 1);
}
}
void update(int i, int lo, int hi, int l, int r, int val) {
if (r < lo || hi < l) return;
if (l <= lo && hi <= r) {
delta[i] = val;
return;
}
push(i);
int m = (lo + hi) / 2;
update(2 * i, lo, m, l, r, val);
update(2 * i + 1, m + 1, hi, l, r, val);
pull(i);
}
int query(int i, int lo, int hi, int sz) {
if (lo == hi) return lo;
if (getMaxi(i) < sz) return -1;
int m = (lo + hi) / 2;
if (getMaxi(2 * i) >= sz) {
return query(2 * i, lo, m, sz);
}
else if (getMaxi(2 * i + 1) >= sz) {
return query(2 * i + 1, m + 1, hi, sz);
}
else {
return m - getR(2 * i) + 1;
}
}
};
int N, M;
SegmentTree st(MAX_N);
int main() {
//freopen("seating.in", "r", stdin); freopen("seating.out", "w", stdout);
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> N >> M;
st.update(1, N, -1);
int ans = 0;
for (int i = 0; i < M; ++i) {
char type; cin >> type;
if (type == 'A') {
int sz; cin >> sz;
int res = st.query(sz);
if (res == -1) ++ans;
else st.update(res, res + sz - 1, 1);
}
else {
int l, r; cin >> l >> r;
st.update(l, r, -1);
}
}
cout << ans << 'n';
return 0;
}
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team