# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
380174 | idk321 | 말 (IOI15_horses) | C++11 | 271 ms | 8428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod = 1000000007;
const int N = 500000;
const int R = 710;
int n;
int* x;
int* y;
int best[R];
ll left1[R];
ll right1[R];
void spMod(ll& num)
{
if (num >= mod)
{
num %= mod;
num += mod;
}
}
ll getBest()
{
ll cbest = left1[0] % mod;
cbest *= y[best[0]];
cbest %= mod;
int ci = best[0];
ll fac = 1;
fac *= right1[0];
spMod(fac);
ll facAll = left1[0];
facAll %= mod;
facAll *= right1[0];
facAll %= mod;
for (int a = R; a < n; a += R)
{
int i = best[a / R];
fac *= left1[a / R];
spMod(fac);
facAll *= left1[a / R];
facAll %= mod;
if (fac * y[i] > y[ci])
{
cbest = facAll * y[i];
cbest %= mod;
ci = i;
fac = 1;
}
fac *= right1[a / R];
spMod(fac);
facAll *= right1[a / R];
facAll %= mod;
}
return cbest;
}
void makeBlock(int block)
{
int ci = block * R;
ll fac = 1;
for (int i = block * R + 1; i < min(n, (block + 1) * R); i++)
{
fac *= x[i];
spMod(fac);
if (fac > y[ci] || fac * y[i] > y[ci])
{
ci = i;
fac = 1;
}
}
fac = 1;
for (int i = 0; i <= ci; i++)
{
fac *= x[i + block * R];
spMod(fac);
}
left1[block] = fac;
fac = 1;
for (int i = ci + 1; i < R && i + block * R < n; i++)
{
fac *= x[i + block * R];
spMod(fac);
}
right1[block] = fac;
best[block] = ci;
}
int init(int N, int X[], int Y[]) {
n = N;
x = X;
y = Y;
for (int a = 0; a < R && a * R < n; a++)
{
makeBlock(a);
}
//cout << best[0] << endl;
return getBest() % mod;
}
int updateX(int pos, int val) {
x[pos] = val;
makeBlock(pos / R);
return getBest() % mod;
}
int updateY(int pos, int val) {
y[pos] = val;
makeBlock(pos / R);
return getBest() % mod;
}
컴파일 시 표준 에러 (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... |