# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
23433 | rubabredwan | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 669 ms | 24332 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/* Bismillahir Rahmanir Rahim */
#include <bits/stdc++.h>
using namespace std;
const int N = 30005;
const int M = 150;
const int oo = 1e9;
struct data{
int cost, pos, b;
bool operator < (const data &p) const{
return cost > p.cost;
}
data () {}
data (int _cost, int _pos, int _b){
cost = _cost;
pos = _pos;
b = _b;
}
};
int dis[N][M+10];
int n, m, B[N], P[N];
vector<int>ps[N];
priority_queue<data>q;
void propagate(int pos, int sz, int pst){
int ds = pst;
Compilation message (stderr)
# | 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... |