# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
299221 | ASDF123 | 말 (IOI15_horses) | C++17 | 1576 ms | 8192 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
//#include "grader.cpp"
#include <bits/stdc++.h>
#define ll long long
#define double long double
using namespace std;
const int N = (int)5e5 + 5;
const int MOD = (int)1e9 + 7;
const double eps = 1e-9;
int x[N], y[N];
int n;
double get(double x) {
double r = 10;
double l = 0;
while(r-l>eps){
double m = (l+r)/2;
if ( pow(10, m) > x)
r=m;
else
l=m;
}
return l;
}
int calc() {
int pos = -1;
double best = 0;
double pref = 0;
for (int i = 0; i < n; i++) {
pref += (double)get(x[i]*1.0);
if (pref + (double)get(y[i]*1.0) - best > eps) {
best = pref + get(y[i]*1.0);
pos = i;
}
}
long long ans = 1;
for (int i = 0; i <= pos; i++) {
ans *= x[i], ans %= MOD;
}
ans *= y[pos], ans %= MOD;
return ans;
}
int init(int NN, int X[], int Y[]) {
n = NN;
for (int i = 0; i < n; i++) {
x[i] = X[i];
y[i] = Y[i];
}
return calc();
}
int updateX(int pos, int val) {
x[pos] = val;
return calc();
}
int updateY(int pos, int val) {
y[pos] = val;
return calc();
}
컴파일 시 표준 에러 (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... |