Submission #1080636

#TimeUsernameProblemLanguageResultExecution timeMemory
1080636serifefedartarAkcija (COCI21_akcija)C++17
50 / 110
1087 ms63056 KiB
#include <bits/stdc++.h> using namespace std; #define fast ios::sync_with_stdio(0);cin.tie(0) typedef long long ll; #define f first #define s second #define LOGN 21 const ll MOD = 1e9 + 7; const ll MAXN = 2100; #define int long long vector<pair<int,int>> v; int sg[4*MAXN], lazy[4*MAXN]; void init(int k, int a, int b) { if (a == b) { sg[k] = a; lazy[k] = 0; return ; } init(2*k, a, (a+b)/2); init(2*k+1, (a+b)/2+1, b); sg[k] = min(sg[2*k], sg[2*k+1]); lazy[k] = 0; } void push(int k, int a, int b) { if (lazy[k]) { sg[k] += lazy[k]; if (a != b) { lazy[2*k] += lazy[k]; lazy[2*k+1] += lazy[k]; } lazy[k] = 0; } } void update(int k, int a, int b, int q_l, int q_r, int val) { push(k, a, b); if (b < q_l || a > q_r) return ; if (q_l <= a && b <= q_r) { lazy[k] += val; push(k, a, b); return ; } update(2*k, a, (a+b)/2, q_l, q_r, val); update(2*k+1, (a+b)/2+1, b, q_l, q_r, val); sg[k] = min(sg[2*k], sg[2*k+1]); } int query(int k, int a, int b, int q_l, int q_r) { push(k, a, b); if (b < q_l || a > q_r) return 1e9; if (q_l <= a && b <= q_r) return sg[k]; return min(query(2*k, a, (a+b)/2, q_l, q_r), query(2*k+1, (a+b)/2+1, b, q_l, q_r)); } struct Partition { int n = 2100; vector<int> ban, here; int cnt = 0, cost = 0; Partition(vector<int> _ban) : ban(_ban) { n = ban.size(); cnt = cost = 0; init(1, 1, n); for (int i = 0; i < n; i++) { if (ban[i] || query(1, 1, n, v[i].s, n) == 0) continue; cnt++; cost += v[i].f; here.push_back(i); update(1, 1, n, v[i].s, n, -1); } } }; bool operator <(Partition A, Partition B) { return make_pair(-A.cnt, A.cost) > make_pair(-B.cnt, B.cost); } signed main() { fast; int n, k; cin >> n >> k; v = vector<pair<int,int>>(n); for (int i = 0; i < n; i++) cin >> v[i].f >> v[i].s; sort(v.begin(), v.end()); priority_queue<Partition> pq; pq.push(vector<int>(n)); while (!pq.empty()) { Partition Q = pq.top(); pq.pop(); cout << Q.cnt << " " << Q.cost << "\n"; k--; if (k == 0) exit(0); vector<int> ban_here = Q.ban; for (auto u : Q.here) { ban_here[u] = true; pq.push(Partition(ban_here)); ban_here[u] = false; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...