# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
97886 | someone_aa | Horses (IOI15_horses) | C++17 | 21 ms | 11384 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>
#define ll long long
using namespace std;
const int maxn = 100100;
const ll mod = 1e9 + 7;
ll x[maxn], y[maxn], n;
int solve() {
ll h = 1LL;
ll result = (1LL * x[0] * y[0])%mod;
ll pref = x[0];
for(int i=1;i<n;i++) {
ll curr = 1LL * x[i] * y[i];
pref *= 1LL * x[i];
if(curr < y[i-1]) {
continue;
}
else if(curr >= y[i-1]) {
result = (pref * y[i]) % mod;
}
}
return result % mod;
}
int init(int N, int X[], int Y[]) {
n = N;
for(int i=0;i<N;i++) {
x[i] = X[i]; y[i] = Y[i];
}
return solve();
}
int updateX(int pos, int val) {
x[pos] = val;
return solve();
}
int updateY(int pos, int val) {
y[pos] = val;
return solve();
}
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... |