제출 #719144

#제출 시각아이디문제언어결과실행 시간메모리
719144mseebacher철로 (IOI14_rail)C++17
8 / 100
70 ms468 KiB
#include "rail.h"
#include <bits/stdc++.h> 

using namespace std;

void findLocation(int n, int first, int location[], int stype[])
{
	stype[0] = 1;
	for(int i = 1;i<n;i++) stype[i] = 2;
	location[0] = first;
	for(int i = 1;i<n;i++){
		location[i] = location[0] + getDistance(0,i);
	}
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…