# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
363524 | silverfish | 철로 (IOI14_rail) | C++14 | 86 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int uint;
typedef pair<int, int> pii;
//mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
#define pb push_back
#define FAST ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define TC int __TC__; cin >> __TC__; while(__TC__--)
#define ar array
const int INF = 1e9 + 7;
// C (down) : 1
// D (up) : 2
void findLocation(int n, int first, int loc[], int type[]){
loc[0] = first;
type[0] = 1;
ar<int,2> mn = {INF, -1};
for(int i = 1; i < n; ++i){
mn = min(mn, {getDistance(0, i), i});
}
mn[0] += first;
type[mn[1]] = 2;
loc[mn[1]] = mn[0];
int first_d = mn[1];
for(int i = 1; i < n; ++i){
if(i == mn[1]) continue;
int dist0 = getDistance(0, i), dist1 = getDistance(mn[1], i);
if(dist0 > dist1){
type[i] = 1;
loc[i] = mn[0] - dist1;
}else{
type[i] = 2;
loc[i] = first + dist0;
}
}
return;
}
컴파일 시 표준 에러 (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... |