# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
640092 | ygim | 고속도로 설계 (CEOI12_highway) | C++17 | 4 ms | 976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// P1_HighwayDesign.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include "office.h"
#include <iostream>
#include <vector>
#include <algorithm>
#include <math.h>
using namespace std;
typedef vector<int> vi;
typedef vector<vi> vvi;
int main()
{
//ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
int n = GetN();
vector<int> nums(n);
for (int i = 0; i < n; i++) nums[i] = i + 1;
while (true)
{
random_shuffle(nums.begin(), nums.end());
vector<int> a;
bool f = true;
for (int i = 2; i < n; i++)
{
if (!isOnLine(nums[0], nums[1], nums[i])) {
a.push_back(nums[i]);
if (a.size() >= 3)
{
if (!isOnLine(a[0], a[1], a.back()))
{
f = false;
break;
}
}
}
}
if (f) Answer(nums[0], a[0], nums[1], a[1]);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |