# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
28221 | noobprogrammer | Rail (IOI14_rail) | C++14 | 137 ms | 896 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 "rail.h"
#include <bits/stdc++.h>
using namespace std ;
#define ii pair<int,int>
#define fi first
#define se second
#define vi vector<int>
#define vii vector<ii>
int from0[5010] , from1[5010] ;
vii le , ri , D , C ;
bool cmp(ii a, ii b){
return a.se < b.se ;
}
void findLocation(int n, int zr , int loc[], int tp[]){
int mn = 1e9 , opt = -1 ;
for(int i=1;i<n;i++) {
from0[i] = getDistance(0, i) ;
if(from0[i] < mn){
mn = from0[i] ;
opt = i ;
}
}
from1[0] = from0[opt] ;
loc[0] = zr ; tp[0] = 1 ;
loc[opt] = zr + from0[opt] ; tp[opt] = 2 ;
for(int i=1 ; i<n ;i++){
if(i == opt) continue ;
# | 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... |