# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1159565 | Tenis0206 | Fireworks (APIO16_fireworks) | C++20 | 131 ms | 84880 KiB |
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int nmax = 3e5;
int n, m;
int t[nmax + 5], c[nmax + 5];
vector<int> G[nmax + 5];
struct funct
{
int a, b;
priority_queue<int> *h;
funct()
{
a = b = 0;
h = new priority_queue<int>;
}
void operator += (funct other)
{
a += other.a;
b += other.b;
if(other.h->size() > h->size())
{
swap(other.h, h);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |