# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
827730 | Supersonic | 말 (IOI15_horses) | C++14 | 1583 ms | 19900 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ll;
ll h[500001];
ll x[500001];
ll y[500001];
int n;
int init(int N, int X[], int Y[]) {
n=N;
h[0]=X[0];
for(int i=0;i<n;i++){
x[i]=X[i];
y[i]=Y[i];
if(i>0)h[i]=(h[i-1]*x[i])%((ll)1e9+7);
}
ll mp=0;ll c=1;
for(int i=1;i<n;i++){
c*=x[i];
if(c>y[mp]||y[i]>y[mp]||c*y[i]>y[mp]){mp=i;c=1;}
}
return (h[mp]*y[mp])%((ll)1e9+7);
}
int updateX(int pos, int val) {
x[pos]=val;
h[0]=x[0];
for(int i=1;i<n;i++){
if(i<pos)continue;
h[i]=(h[i-1]*x[i])%((ll)1e9+7);
}
ll mp=0;ll c=1;
for(int i=1;i<n;i++){
c*=x[i];
if(c>y[mp]||y[i]>y[mp]||c*y[i]>y[mp]){mp=i;c=1;}
}
return (h[mp]*y[mp])%((ll)1e9+7);
}
int updateY(int pos, int val) {
y[pos]=val;
ll mp=0;ll c=1;
for(int i=1;i<n;i++){
c*=x[i];
if(c>y[mp]||y[i]>y[mp]||c*y[i]>y[mp]){mp=i;c=1;}
}
return (h[mp]*y[mp])%((ll)1e9+7);
}
/*
a x
b y
xy>ab
x/a > b/y*/
컴파일 시 표준 에러 (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... |