# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
353863 | antontsiorvas | 말 (IOI15_horses) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
#include <algorithm>
long long int x[500005], y[500005];
int init(int N, int X[], int Y[]) {
for(int i=0; i<N; i++){
x[i] = X[i];
y[i] = Y[i];
}
long long int horses=1;
long long int ret=0;
for(int i=0; i<N; i++){
horses *= x[i];
ret %= 1000000007;
horses %= 1000000007;
ret = std::max(ret, (horses*y[i])%1000000007);
}
int ret2 = ret;
return ret2;
}
int updateX(int pos, int val) {
x[pos] = val;
long long int horses=1;
long long int ret=0;
for(int i=0; i<N; i++){
horses *= x[i];
ret %= 1000000007;
horses %= 1000000007;
ret = std::max(ret, (horses*y[i])%1000000007);
}
int ret2 = ret;
return ret2;
}
int updateY(int pos, int val) {
y[pos] = val;
long long int horses=1;
long long int ret=0;
for(int i=0; i<N; i++){
horses *= x[i];
ret %= 1000000007;
horses %= 1000000007;
ret = std::max(ret, (horses*y[i])%1000000007);
}
int ret2 = ret;
return ret2;
}