# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1004524 | vjudge1 | Horses (IOI15_horses) | C++17 | 1517 ms | 8028 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define f first
#define s second
#define pb push_back
#define pf push_front
#define pi pair<int,int>
#define vi vector<int>
int n ;
vi x, y;
const int mod = 1e9+7;
ll init(int N, int X[], int Y[]){
n = N;
x.resize(N);
y.resize(N);
for(int i =0; i < n; i++){
x[i] = X[i];
y[i] = Y[i];
}
ll final = 0;
ll have = 1;
ll cnt = 0, left = 0, prev =1;
ll ccnt = 0, cleft= 0, cl=0;
for(int i = 1; i <= n; i++){
cl = 0;
have = ((have* x[i-1]));
//cout << have << " " << ccnt <<" " << cl <<endl;
while(have>=mod){
ccnt++;
have %=mod;
}
while(y[i-1]>=mod){
cl++;
y[i-1]%=mod;
}
ll hold = have*y[i-1];
while(hold >=mod){
hold%=mod;
ccnt++;
}
if(ccnt*cl> cnt){
cnt = ccnt*cl;
left = hold;
}
else if((ccnt*cl)==cnt && hold> left){
cnt = ccnt*cl;
left = hold;
}
}
return left;
}
ll updateX(int pos, int val){
x[pos]=val;
ll final = 0;
ll have = 1;
ll cnt = 0, left = 0, prev =1;
ll ccnt = 0, cleft= 0, cl=0;
for(int i = 1; i <= n; i++){
cl = 0;
have = ((have* x[i-1]));
while(have>=mod){
ccnt++;
have %=mod;
}
while(y[i-1]>=mod){
cl++;
y[i-1]%=mod;
}
ll hold = have*y[i-1];
while(hold >=mod){
hold%=mod;
ccnt++;
}
if(ccnt*cl> cnt){
cnt = ccnt*cl;
left = hold;
}
else if(ccnt*cl==cnt && hold> left){
cnt = ccnt*cl;
left = hold;
}
}
return left;
}
ll updateY(int pos, int val){
y[pos]=val;
ll final = 0;
ll have = 1;
ll cnt = 0, left = 0, prev =1;
ll ccnt = 0, cleft= 0, cl=0;
for(int i = 1; i <= n; i++){
cl = 0;
have = ((have* x[i-1]));
//cotu << have << endl;
while(have>=mod){
ccnt++;
have %=mod;
}
while(y[i-1]>=mod){
cl++;
y[i-1]%=mod;
}
ll hold = have*y[i-1];
while(hold >=mod){
hold%=mod;
ccnt++;
}
if(ccnt*cl> cnt){
cnt = ccnt*cl;
left = hold;
}
else if(ccnt*cl==cnt && hold> left){
cnt = ccnt*cl;
left = hold;
}
}
return left;
}
Compilation message (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... |