Add a bunch of other problems.

Some are not finished...
This commit is contained in:
2025-09-12 14:50:25 -03:00
parent 88e542c982
commit 489cb2ba51
385 changed files with 49442 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
/* Problem URL: https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/A */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <class T, class comp = less<>>
using ordered_set = tree<T, null_type , comp , rb_tree_tag , tree_order_statistics_node_update>;
#define V vector
#define rmin(a, b) a = min(a, b)
#define rmax(a, b) a = max(a, b)
#define rep(i, lim) for (int i = 0; i < (lim); i++)
#define nrep(i, s, lim) for (int i = s; i < (lim); i++)
#define repv(i, v) for (auto &i : (v))
#define fillv(v) for (auto &itr_ : (v)) { cin >> itr_; }
#define sortv(v) sort(v.begin(), v.end())
#define all(v) (v).begin(), (v).end()
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vvvvl = vector<vvvl>;
template<class v>
auto operator<<(ostream &os, const vector<v> &vec)->ostream& {
os << vec[0];
for (size_t i = 1; i < vec.size(); i++) {
os << ' ' << vec[i];
}
os << '\n';
return os;
}
template<class v>
auto operator>>(istream &is, vector<v> &vec)->istream& {
for (auto &i : vec) {
is >> i;
}
return is;
}
template<class v>
auto operator<<(ostream &os, const vector<vector<v>> &vec)->ostream& {
for (auto &i : vec) {
os << i[0];
for (size_t j = 1; j < i.size(); j++) {
os << ' ' << i[j];
}
os << '\n';
}
return os;
}
template<class v>
auto operator>>(istream &is, vector<vector<v>> &vec)->istream& {
for (auto &i : vec) {
for (auto &j : i) {
is >> j;
}
}
return is;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vi fds(n);
cin >> fds;
int size = n + 1;
while (__builtin_popcount(size) != 1) {
size++;
fds.push_back(0);
}
vi seg(size * 2);
auto update = [&](int i) {
seg[i + size]++;
for (i = (i + size) >> 1; i > 0; i >>= 1) {
seg[i] = seg[i * 2] + seg[i * 2 + 1];
}
};
function<int(int, int, int, int, int)> query = [&](int i, int l, int r, int tl, int tr) {
if (l > tr || r < tl) {
return 0;
}
if (l >= tl && r <= tr) {
return seg[i];
}
int mid = (l + r) >> 1;
return query(i * 2, l, mid, tl, tr) + query(i * 2 + 1, mid + 1, r, tl, tr);
};
rep(i, n) {
cout << query(1, 0, size - 1, fds[i], n) << ' ';
update(fds[i]);
}
cout << '\n';
}

View File

@@ -0,0 +1,144 @@
/* Problem URL: https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/B */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <class T, class comp = less<>>
using ordered_set = tree<T, null_type , comp , rb_tree_tag , tree_order_statistics_node_update>;
#define V vector
#define rmin(a, b) a = min(a, b)
#define rmax(a, b) a = max(a, b)
#define rep(i, lim) for (int i = 0; i < (lim); i++)
#define nrep(i, s, lim) for (int i = s; i < (lim); i++)
#define repv(i, v) for (auto &i : (v))
#define fillv(v) for (auto &itr_ : (v)) { cin >> itr_; }
#define sortv(v) sort(v.begin(), v.end())
#define all(v) (v).begin(), (v).end()
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vvvvl = vector<vvvl>;
template<class v>
auto operator<<(ostream &os, const vector<v> &vec)->ostream& {
os << vec[0];
for (size_t i = 1; i < vec.size(); i++) {
os << ' ' << vec[i];
}
os << '\n';
return os;
}
template<class v>
auto operator>>(istream &is, vector<v> &vec)->istream& {
for (auto &i : vec) {
is >> i;
}
return is;
}
template<class v>
auto operator<<(ostream &os, const vector<vector<v>> &vec)->ostream& {
for (auto &i : vec) {
os << i[0];
for (size_t j = 1; j < i.size(); j++) {
os << ' ' << i[j];
}
os << '\n';
}
return os;
}
template<class v>
auto operator>>(istream &is, vector<vector<v>> &vec)->istream& {
for (auto &i : vec) {
for (auto &j : i) {
is >> j;
}
}
return is;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vi fds(n);
cin >> fds;
reverse(all(fds));
vi ans(n);
int size = n;
if (size > 1) {
size = 1 << (32 - __builtin_clz(size - 1));
}
vi seg(size * 2);
nrep(i, size, size + n) {
seg[i] = 1;
}
for (int i = size - 1; i > 0; i--) {
seg[i] = seg[i * 2] + seg[i * 2 + 1];
}
auto update = [&](int i) {
i += size;
seg[i] = 0;
for (i >>= 1; i > 0; i >>= 1) {
seg[i] = seg[i * 2] + seg[i * 2 + 1];
}
};
function<int(int, int, int, int)> query = [&](int i, int l, int r, int k) {
if (seg[i] < k) {
return -1;
}
if (l == r) {
return i - size;
}
int mid = (l + r) >> 1;
int ans = query(i * 2 + 1, mid + 1, r, k);
if (ans == -1) {
return query(i * 2, l, mid, k - seg[i * 2 + 1]);
}
return ans;
};
rep(i, n) {
int act = query(1, 0, size - 1, fds[i] + 1) + 1;
update(act - 1);
ans[i] = act;
}
for (int i = n - 1; i >= 0; i--) {
cout << ans[i] << " \n"[i == 0];
}
}

View File

@@ -0,0 +1,137 @@
/* Problem URL: https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/C */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <class T, class comp = less<>>
using ordered_set = tree<T, null_type , comp , rb_tree_tag , tree_order_statistics_node_update>;
#define V vector
#define rmin(a, b) a = min(a, b)
#define rmax(a, b) a = max(a, b)
#define rep(i, lim) for (int i = 0; i < (lim); i++)
#define nrep(i, s, lim) for (int i = s; i < (lim); i++)
#define repv(i, v) for (auto &i : (v))
#define fillv(v) for (auto &itr_ : (v)) { cin >> itr_; }
#define sortv(v) sort(v.begin(), v.end())
#define all(v) (v).begin(), (v).end()
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vvvvl = vector<vvvl>;
template<class v>
auto operator<<(ostream &os, const vector<v> &vec)->ostream& {
os << vec[0];
for (size_t i = 1; i < vec.size(); i++) {
os << ' ' << vec[i];
}
os << '\n';
return os;
}
template<class v>
auto operator>>(istream &is, vector<v> &vec)->istream& {
for (auto &i : vec) {
is >> i;
}
return is;
}
template<class v>
auto operator<<(ostream &os, const vector<vector<v>> &vec)->ostream& {
for (auto &i : vec) {
os << i[0];
for (size_t j = 1; j < i.size(); j++) {
os << ' ' << i[j];
}
os << '\n';
}
return os;
}
template<class v>
auto operator>>(istream &is, vector<vector<v>> &vec)->istream& {
for (auto &i : vec) {
for (auto &j : i) {
is >> j;
}
}
return is;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vi prev(n, -1);
vi fds(n * 2);
repv(i, fds) {
cin >> i;
i--;
}
vi ans(n);
int size = n * 2;
if (size > 1) {
size = 1 << (32 - __builtin_clz(size));
}
vi seg(size * 2);
auto update = [&](int i) {
i += size;
seg[i]++;
for (i >>= 1; i > 0; i >>= 1) {
seg[i] = seg[i * 2] + seg[i * 2 + 1];
}
};
function<int(int, int, int, int, int)> query = [&](int i, int l, int r, int tl, int tr) {
if (l > tr || r < tl) {
return 0;
}
if (l >= tl && r <= tr) {
return seg[i];
}
int mid = (l + r) >> 1;
return query(i * 2, l, mid, tl, tr) + query(i * 2 + 1, mid + 1, r, tl, tr);
};
rep(i, n * 2) {
if (prev[fds[i]] == -1) {
prev[fds[i]] = i;
continue;
}
ans[fds[i]] = query(1, 0, size - 1, prev[fds[i]], i);
update(prev[fds[i]]);
}
cout << ans;
}

View File

@@ -0,0 +1,152 @@
/* Problem URL: https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/D */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <class T, class comp = less<>>
using ordered_set = tree<T, null_type , comp , rb_tree_tag , tree_order_statistics_node_update>;
#define V vector
#define rmin(a, b) a = min(a, b)
#define rmax(a, b) a = max(a, b)
#define rep(i, lim) for (int i = 0; i < (lim); i++)
#define nrep(i, s, lim) for (int i = s; i < (lim); i++)
#define repv(i, v) for (auto &i : (v))
#define fillv(v) for (auto &itr_ : (v)) { cin >> itr_; }
#define sortv(v) sort(v.begin(), v.end())
#define all(v) (v).begin(), (v).end()
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vvvvl = vector<vvvl>;
template<class v>
auto operator<<(ostream &os, const vector<v> &vec)->ostream& {
os << vec[0];
for (size_t i = 1; i < vec.size(); i++) {
os << ' ' << vec[i];
}
os << '\n';
return os;
}
template<class v>
auto operator>>(istream &is, vector<v> &vec)->istream& {
for (auto &i : vec) {
is >> i;
}
return is;
}
template<class v>
auto operator<<(ostream &os, const vector<vector<v>> &vec)->ostream& {
for (auto &i : vec) {
os << i[0];
for (size_t j = 1; j < i.size(); j++) {
os << ' ' << i[j];
}
os << '\n';
}
return os;
}
template<class v>
auto operator>>(istream &is, vector<vector<v>> &vec)->istream& {
for (auto &i : vec) {
for (auto &j : i) {
is >> j;
}
}
return is;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vi prev(n, -1);
vi fds(n * 2);
repv(i, fds) {
cin >> i;
i--;
}
vi ans(n);
int size = n * 2;
if (size > 1) {
size = 1 << (32 - __builtin_clz(size));
}
vi seg(size * 2);
auto update = [&](int i, int v) {
i += size;
seg[i] += v;
for (i >>= 1; i > 0; i >>= 1) {
seg[i] = seg[i * 2] + seg[i * 2 + 1];
}
};
function<int(int, int, int, int, int)> query = [&](int i, int l, int r, int tl, int tr) {
if (l > tr || r < tl) {
return 0;
}
if (l >= tl && r <= tr) {
return seg[i];
}
int mid = (l + r) >> 1;
return query(i * 2, l, mid, tl, tr) + query(i * 2 + 1, mid + 1, r, tl, tr);
};
rep(i, n * 2) {
if (prev[fds[i]] == -1) {
prev[fds[i]] = i;
update(i, 1);
continue;
}
update(prev[fds[i]], -1);
ans[fds[i]] = query(1, 0, size - 1, prev[fds[i]], i);
}
fill(all(seg), 0);
fill(all(prev), -1);
for (int i = n * 2 - 1; i >= 0; i--) {
if (prev[fds[i]] == -1) {
prev[fds[i]] = i;
update(i, 1);
continue;
}
update(prev[fds[i]], -1);
ans[fds[i]] += query(1, 0, size - 1, i, prev[fds[i]]);
}
cout << ans;
}

View File

@@ -0,0 +1,137 @@
/* Problem URL: https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/E */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <class T, class comp = less<>>
using ordered_set = tree<T, null_type , comp , rb_tree_tag , tree_order_statistics_node_update>;
#define V vector
#define rmin(a, b) a = min(a, b)
#define rmax(a, b) a = max(a, b)
#define rep(i, lim) for (int i = 0; i < (lim); i++)
#define nrep(i, s, lim) for (int i = s; i < (lim); i++)
#define repv(i, v) for (auto &i : (v))
#define fillv(v) for (auto &itr_ : (v)) { cin >> itr_; }
#define sortv(v) sort(v.begin(), v.end())
#define all(v) (v).begin(), (v).end()
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vvvvl = vector<vvvl>;
template<class v>
auto operator<<(ostream &os, const vector<v> &vec)->ostream& {
os << vec[0];
for (size_t i = 1; i < vec.size(); i++) {
os << ' ' << vec[i];
}
os << '\n';
return os;
}
template<class v>
auto operator>>(istream &is, vector<v> &vec)->istream& {
for (auto &i : vec) {
is >> i;
}
return is;
}
template<class v>
auto operator<<(ostream &os, const vector<vector<v>> &vec)->ostream& {
for (auto &i : vec) {
os << i[0];
for (size_t j = 1; j < i.size(); j++) {
os << ' ' << i[j];
}
os << '\n';
}
return os;
}
template<class v>
auto operator>>(istream &is, vector<vector<v>> &vec)->istream& {
for (auto &i : vec) {
for (auto &j : i) {
is >> j;
}
}
return is;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, m;
cin >> n >> m;
if (n > 1) {
n = 1 << (32 - __builtin_clz(n - 1));
}
vl seg(n * 2);
function<void(int, int, int, int, int, ll)> update = [&](int i, int l, int r, int tl, int tr, ll v) {
if (l > tr || r < tl) {
return;
}
if (l >= tl && r <= tr) {
seg[i] += v;
return;
}
int mid = (l + r) >> 1;
update(i * 2, l, mid, tl, tr, v);
update(i * 2 + 1, mid + 1, r, tl, tr, v);
};
auto query = [&](int i) {
ll ans = 0;
for (i += n; i > 0; i >>= 1) {
ans += seg[i];
}
return ans;
};
while (m--) {
int op;
cin >> op;
if (op == 1) {
int l, r;
ll v;
cin >> l >> r >> v;
update(1, 0, n - 1, l, r - 1, v);
continue;
}
int i;
cin >> i;
cout << query(i) << '\n';
}
}