# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1170320 | KG07 | Radio Towers (IOI22_towers) | C++20 | 419 ms | 60848 KiB |
#include "towers.h"
#include <bits/stdc++.h>
using namespace std;
struct node{
int L, R, C;
node *left, *right;
void init(){
if(L < R){
left = new node({L, (L+R)/2, 0, NULL, NULL});
right = new node({(L+R)/2+1, R, 0, NULL, NULL});
left->init();
right->init();
}
}
void update(int K, node *M){
C++;
if(L == R)return;
if(K > (L+R)/2){
left = M->left;
right = new node({(L+R)/2+1, R, M->right->C, NULL, NULL});
right->update(K, M->right);
}
else{
right = M->right;
left = new node({L, (L+R)/2, M->left->C, NULL, NULL});
left->update(K, M->left);
}
}
int count(int x, int y){
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |