# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
586826 | InternetPerson10 | Horses (IOI15_horses) | C++17 | 572 ms | 94384 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "horses.h"
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007;
vector<int> x, y;
set<int> nonOnes;
ll modpow(ll n, ll e = MOD - 2) {
if(e == 0) return 1;
ll g = modpow(n, e/2);
g *= g;
g %= MOD;
if(e%2) {
g *= n;
g %= MOD;
}
return g;
}
struct SegTree {
int lx, rx;
int val = 0;
SegTree *ls, *rs;
SegTree(int l, int r) : lx(l), rx(r) {
if(rx - lx != 1) {
int mid = (lx + rx) / 2;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |