# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
296292 | nvmdava | 철로 (IOI14_rail) | C++17 | 128 ms | 776 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
int d[5005][3];
vector<pair<int, int> > rh, lh;
int lo[5005], st[5005];
vector<int> bruh;
void solve(int con, int flip, vector<pair<int, int> >& v){
sort(v.begin(), v.end());
bruh.clear();
int r = -1;
for(auto& x : v){
bool ok = 0;
int d;
if(r == -1)
ok = 1;
else {
d = lo[r] - getDistance(r, x.ss);
if(d != 2 * (*lower_bound(bruh.begin(), bruh.end(), d)) - x.ff)
ok = 1;
}
if(ok){
lo[r = x.ss] = x.ff;
컴파일 시 표준 에러 (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... |