제출 #596540

#제출 시각아이디문제언어결과실행 시간메모리
596540Elias철로 (IOI14_rail)C++17
8 / 100
72 ms500 KiB
#include <bits/stdc++.h>

using namespace std;

#ifndef _DEBUG
#include "rail.h"
#endif

#ifdef _DEBUG
int getDistance(int i, int j)
{
	return -1;
}
#endif

void findLocation(int n, int first, int location[], int stype[])
{
	location[0] = first;
	stype[0] = 1;

	for (int i = 1; i < n; i++)
	{
		stype[i] = 2;
		location[i] = getDistance(0, i) + first;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...