#include <bits/stdc++.h>
#include "horses.h"
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
//#define int long long
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int mod = 1e9 + 7;
const int maxn = 1e5 + 5;
int n;
vector<ll> X(5*maxn), Y(maxn);
vector<double> logX(5*maxn), logY(maxn);
int calc() {
ll curr = 1, id = -1, ans = 0, p1 = 0;
double ls = 0;
for(int i=0; i<n; i++) {
curr = (curr * X[i]) % mod;
ls += logX[i];
if(ls + logY[i] > ans) {
ans = ls + logY[i];
id = i;
p1 = curr;
}
}
ll res = (p1 * Y[id]) % mod;
return (int)res;
}
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];
logX[i] = log10(X[i]), logY[i] = log10(y[i]);
}
return calc();
}
int updateX(int p, int v) {
X[p] = v;
logX[p] = log10(v);
return calc();
}
int updateY(int p, int v) {
logY[p] = log10(v);
return calc();
}
Compilation message
horses.cpp: In function 'int calc()':
horses.cpp:29:27: warning: conversion from 'll' {aka 'long long int'} to 'double' may change value [-Wconversion]
29 | if(ls + logY[i] > ans) {
| ^~~
horses.cpp:30:22: warning: conversion from 'double' to 'll' {aka 'long long int'} may change value [-Wfloat-conversion]
30 | ans = ls + logY[i];
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9820 KB |
Output is correct |
2 |
Correct |
3 ms |
9820 KB |
Output is correct |
3 |
Incorrect |
3 ms |
9820 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9816 KB |
Output is correct |
2 |
Correct |
3 ms |
9816 KB |
Output is correct |
3 |
Incorrect |
3 ms |
9820 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1536 ms |
13744 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
9820 KB |
Output is correct |
2 |
Correct |
3 ms |
9820 KB |
Output is correct |
3 |
Incorrect |
3 ms |
9820 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9820 KB |
Output is correct |
2 |
Correct |
3 ms |
9820 KB |
Output is correct |
3 |
Incorrect |
3 ms |
9768 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |