# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
787116 | APROHACK | Highway Tolls (IOI18_highway) | C++17 | 145 ms | 16428 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.
#include "highway.h"
#include <bits/stdc++.h>
#define ff first
#define ss second
#define ll long long
#define pb push_back
using namespace std;
ll m, n, a, b, largo;
vector<int>adj[100000];
vector<int>idx[100000];
int keepBanned;
void llenar(int dd, int ht, int v, vector<int>&w){
for(int i = dd ; i <= ht ; i ++)w[i] = v;
}
void find_edje(int &ejeMedio, vector<int>&w){
int li = 0, ls = m-1, pos;
pos = (li + ls)/2;
ll tried[130003];
for(int i = 0 ; i < m ; i ++)tried[i] = -1;
while(li + 1 < ls){
llenar(0, m-1, 0, w);
llenar(0, keepBanned-1, 1, w);
llenar(0, pos, 1, w);
ll res = ask(w);
tried[pos] = res;
if(res > largo*a){
ls = pos;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |