이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* fucking change this 2020 */
#include <cstdio>
#include <vector>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <set>
#include <map>
#include <random>
#define ll int
#define MAX 1501
using namespace std;
ll vals[MAX];
void initialize(ll n) {
for (ll i = 1; i <= n; ++i) vals[i] = n - 1;
}
ll hasEdge(ll u, ll v) {
if (!vals[u] || !vals[v]) {
if (vals[u]) --vals[u];
else --vals[v];
return 1;
} else {
--vals[v];
--vals[u];
return 0;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |