# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
162956 | Minnakhmetov | 통행료 (IOI18_highway) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
mt19937 rnd(time(0));
int ri(int l, int r) {
return rnd() % (r - l + 1) + l;
}
int main() {
freopen("input.txt", "w", stdout);
int n, m, a, b, s, t;
n = 6;
m = 12;
a = 1;
b = 2;
t = s = ri(0, n - 1);
while (t == s)
t = ri(0, n - 1);
cout << n << " " << m << " " << a << " " << b << " " << s << " " << t << "\n";
for (int i = 1; i < n; i++) {
cout << ri(0, i - 1) << " " << i << "\n";
}
for (int i = 0; i < m - n + 1; i++) {
int x = 0, y = 0;
while (x == y) {
x = ri(0, n - 1);
y = ri(0, n - 1);
}
cout << x << " " << y << "\n";
}
}