# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1103668 |
2024-10-21T14:03:43 Z |
Pioneer |
Horses (IOI15_horses) |
C++17 |
|
185 ms |
93416 KB |
#include "horses.h"
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const ll inf=1e9;
const int mod=1e9+7;
const int MAX=5e5+10;
int x[MAX];
int y[MAX];
struct segtree{
pair<int,bool> t[4*MAX];
pair<int,bool> mrg(pair<int,bool> a,pair<int,bool> b){
pair<int,bool> res={a.first*1ll*b.first%mod,(a.second|b.second)};
if(a.first*1ll*b.first>=mod){
res.second=1;
}
return res;
}
void build(int v,int tl,int tr){
// cerr<<v<<" "<<tl<<" "<<tr<<"\n";
// if(v==0)exit(0);
if(tl==tr){
t[v]={x[tl],0};
return;
}
int tm=(tl+tr)/2;
build(2*v,tl,tm);
build(2*v+1,tm+1,tr);
t[v]=mrg(t[2*v],t[2*v+1]);
}
void update(int v,int tl,int tr,int pos,int x){
if(tl==tr){
t[v]={x,0};
return;
}
int tm=(tl+tr)/2;
if(pos<=tm)update(2*v,tl,tm,pos,x);
else update(2*v+1,tm+1,tr,pos,x);
t[v]=mrg(t[2*v],t[2*v+1]);
}
pair<int,bool> get(int v,int tl,int tr,int l,int r){
if(l>r||tl>r||l>tr)return {1,0};
if(l<=tl&&tr<=r)return t[v];
int tm=(tl+tr)/2;
return mrg(get(2*v,tl,tm,l,r),get(2*v+1,tm+1,tr,l,r));
}
}tx;
struct segtreeMx{
pair<int,int> t[MAX];
pair<int,int> mrg(pair<int,int> a,pair<int,int> b){
if(a.first>=b.first)return a;
else return b;
}
void build(int v,int tl,int tr){
if(tl==tr){
t[v]={y[tl],tl};
return;
}
int tm=(tl+tr)/2;
build(2*v,tl,tm);
build(2*v+1,tm+1,tr);
t[v]=mrg(t[2*v],t[2*v+1]);
}
void update(int v,int tl,int tr,int pos,int x){
if(tl==tr){
t[v]={x,tl};
return;
}
int tm=(tl+tr)/2;
if(pos<=tm)update(2*v,tl,tm,pos,x);
else update(2*v+1,tm+1,tr,pos,x);
t[v]=mrg(t[2*v],t[2*v+1]);
}
pair<int,int> get(int v,int tl,int tr,int l,int r){
if(l>r||tl>r||l>tr)return {0,0};
if(l<=tl&&tr<=r)return t[v];
int tm=(tl+tr)/2;
return mrg(get(2*v,tl,tm,l,r),get(2*v+1,tm+1,tr,l,r));
}
}ty;
int n;
set<int> st;
int get(int pos){
int ans=1;
for(int i=1;i<=pos;i++)ans=ans*1ll*x[i]%mod;
assert(ans==tx.get(1,1,n,1,pos).first);
return ans*1ll*y[pos]%mod;
return tx.get(1,1,n,1,pos).first*1ll*y[pos]%mod;
}
int get(){
{
int pos=n;
int per=x[n]*1ll*y[n]%mod;
bool bf=0;
if(x[n]*1ll*y[n]>=mod)bf=1;
for(int i=n-1;i>=max(1,n-1000);i--){
if(!bf&&y[i]>=per){
pos=i;
per=y[i];
bf=0;
}
if(per*1ll*x[i]>=mod){
bf=1;
}
per=per*1ll*x[i]%mod;
}
return get(pos);
}
st.insert(1);
vector<int> vec;
int pos=ty.get(1,1,n,*st.rbegin(),n).second;
vec.push_back(*st.rbegin());
st.erase(--st.end());
while(!st.empty()){
int pos1=ty.get(1,1,n,*st.rbegin(),vec.back()-1).second;
vec.push_back(*st.rbegin());
st.erase(--st.end());
pair<int,bool> bf=tx.get(1,1,n,pos1+1,pos);
if(bf.second||bf.first*1ll*y[pos]>=mod)break;
if(bf.first*y[pos]<=y[pos1])pos=pos1;
}
for(int x:vec)st.insert(x);
return get(pos);
}
int init(int N, int X[], int Y[]) {
// cout<<"! "<<N<<"\n";
n=N;
for(int i=0;i<N;i++){
y[i+1]=Y[i];
x[i+1]=X[i];
if(X[i]!=1){
st.insert(i+1);
}
}
n=N;
tx.build(1,1,n);
ty.build(1,1,n);
return get();
}
int updateX(int pos, int val) {
// return 0;
pos++;
if(x[pos]!=1)st.erase(pos);
x[pos]=val;
tx.update(1,1,n,pos,val);
if(x[pos]!=1)st.insert(pos);
return get();
}
int updateY(int pos, int val) {
// return 0;
pos++;
y[pos]=val;
ty.update(1,1,n,pos,val);
return get();
}
Compilation message
horses.cpp: In member function 'void segtree::update(int, int, int, int, int)':
horses.cpp:38:46: warning: declaration of 'x' shadows a global declaration [-Wshadow]
38 | void update(int v,int tl,int tr,int pos,int x){
| ~~~~^
horses.cpp:11:5: note: shadowed declaration is here
11 | int x[MAX];
| ^
horses.cpp: In member function 'void segtreeMx::update(int, int, int, int, int)':
horses.cpp:78:46: warning: declaration of 'x' shadows a global declaration [-Wshadow]
78 | void update(int v,int tl,int tr,int pos,int x){
| ~~~~^
horses.cpp:11:5: note: shadowed declaration is here
11 | int x[MAX];
| ^
horses.cpp: In function 'int get(int)':
horses.cpp:102:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
102 | for(int i=1;i<=pos;i++)ans=ans*1ll*x[i]%mod;
| ~~~~~~~~~~~~^~~~
horses.cpp:104:23: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
104 | return ans*1ll*y[pos]%mod;
| ~~~~~~~~~~~~~~^~~~
horses.cpp:105:45: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
105 | return tx.get(1,1,n,1,pos).first*1ll*y[pos]%mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
horses.cpp: In function 'int get()':
horses.cpp:111:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
111 | int per=x[n]*1ll*y[n]%mod;
| ~~~~~~~~~~~~~^~~~
horses.cpp:123:20: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
123 | per=per*1ll*x[i]%mod;
| ~~~~~~~~~~~~^~~~
horses.cpp:140:10: warning: declaration of 'x' shadows a global declaration [-Wshadow]
140 | for(int x:vec)st.insert(x);
| ^
horses.cpp:11:5: note: shadowed declaration is here
11 | int x[MAX];
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6600 KB |
Output is correct |
3 |
Correct |
1 ms |
6648 KB |
Output is correct |
4 |
Correct |
1 ms |
6480 KB |
Output is correct |
5 |
Correct |
1 ms |
6480 KB |
Output is correct |
6 |
Correct |
1 ms |
6480 KB |
Output is correct |
7 |
Correct |
1 ms |
6480 KB |
Output is correct |
8 |
Correct |
1 ms |
6480 KB |
Output is correct |
9 |
Correct |
1 ms |
6480 KB |
Output is correct |
10 |
Correct |
1 ms |
6480 KB |
Output is correct |
11 |
Correct |
1 ms |
6480 KB |
Output is correct |
12 |
Correct |
1 ms |
6480 KB |
Output is correct |
13 |
Correct |
1 ms |
6480 KB |
Output is correct |
14 |
Correct |
1 ms |
6480 KB |
Output is correct |
15 |
Correct |
1 ms |
6588 KB |
Output is correct |
16 |
Correct |
1 ms |
6480 KB |
Output is correct |
17 |
Correct |
1 ms |
6480 KB |
Output is correct |
18 |
Correct |
1 ms |
6480 KB |
Output is correct |
19 |
Correct |
1 ms |
6480 KB |
Output is correct |
20 |
Correct |
1 ms |
6480 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6652 KB |
Output is correct |
4 |
Correct |
1 ms |
6480 KB |
Output is correct |
5 |
Correct |
1 ms |
6480 KB |
Output is correct |
6 |
Correct |
1 ms |
6480 KB |
Output is correct |
7 |
Correct |
1 ms |
6480 KB |
Output is correct |
8 |
Correct |
1 ms |
6480 KB |
Output is correct |
9 |
Correct |
1 ms |
6480 KB |
Output is correct |
10 |
Correct |
1 ms |
6480 KB |
Output is correct |
11 |
Correct |
1 ms |
6596 KB |
Output is correct |
12 |
Correct |
2 ms |
6480 KB |
Output is correct |
13 |
Correct |
1 ms |
6480 KB |
Output is correct |
14 |
Correct |
1 ms |
6480 KB |
Output is correct |
15 |
Correct |
1 ms |
6480 KB |
Output is correct |
16 |
Correct |
2 ms |
6480 KB |
Output is correct |
17 |
Correct |
2 ms |
6480 KB |
Output is correct |
18 |
Correct |
2 ms |
6480 KB |
Output is correct |
19 |
Correct |
1 ms |
6480 KB |
Output is correct |
20 |
Correct |
1 ms |
6480 KB |
Output is correct |
21 |
Correct |
1 ms |
6480 KB |
Output is correct |
22 |
Correct |
1 ms |
6484 KB |
Output is correct |
23 |
Correct |
12 ms |
6484 KB |
Output is correct |
24 |
Correct |
12 ms |
6652 KB |
Output is correct |
25 |
Correct |
12 ms |
6484 KB |
Output is correct |
26 |
Correct |
11 ms |
6708 KB |
Output is correct |
27 |
Correct |
11 ms |
6484 KB |
Output is correct |
28 |
Correct |
12 ms |
6484 KB |
Output is correct |
29 |
Correct |
8 ms |
6484 KB |
Output is correct |
30 |
Correct |
10 ms |
6712 KB |
Output is correct |
31 |
Correct |
8 ms |
6648 KB |
Output is correct |
32 |
Correct |
9 ms |
6668 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
184 ms |
93416 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
4 |
Correct |
1 ms |
6480 KB |
Output is correct |
5 |
Correct |
1 ms |
6480 KB |
Output is correct |
6 |
Correct |
1 ms |
6596 KB |
Output is correct |
7 |
Correct |
1 ms |
6480 KB |
Output is correct |
8 |
Correct |
1 ms |
6480 KB |
Output is correct |
9 |
Correct |
2 ms |
6480 KB |
Output is correct |
10 |
Correct |
1 ms |
6480 KB |
Output is correct |
11 |
Correct |
1 ms |
6652 KB |
Output is correct |
12 |
Correct |
2 ms |
6480 KB |
Output is correct |
13 |
Correct |
1 ms |
6648 KB |
Output is correct |
14 |
Correct |
2 ms |
6480 KB |
Output is correct |
15 |
Correct |
1 ms |
6480 KB |
Output is correct |
16 |
Correct |
2 ms |
6480 KB |
Output is correct |
17 |
Correct |
1 ms |
6480 KB |
Output is correct |
18 |
Correct |
2 ms |
6480 KB |
Output is correct |
19 |
Correct |
1 ms |
6480 KB |
Output is correct |
20 |
Correct |
1 ms |
6480 KB |
Output is correct |
21 |
Correct |
2 ms |
6480 KB |
Output is correct |
22 |
Correct |
2 ms |
6652 KB |
Output is correct |
23 |
Correct |
12 ms |
6484 KB |
Output is correct |
24 |
Correct |
12 ms |
6484 KB |
Output is correct |
25 |
Correct |
12 ms |
6484 KB |
Output is correct |
26 |
Correct |
12 ms |
6484 KB |
Output is correct |
27 |
Correct |
11 ms |
6484 KB |
Output is correct |
28 |
Correct |
12 ms |
6528 KB |
Output is correct |
29 |
Correct |
8 ms |
6484 KB |
Output is correct |
30 |
Correct |
9 ms |
6484 KB |
Output is correct |
31 |
Correct |
7 ms |
6484 KB |
Output is correct |
32 |
Correct |
9 ms |
6648 KB |
Output is correct |
33 |
Runtime error |
62 ms |
47444 KB |
Execution killed with signal 6 |
34 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
2 ms |
6496 KB |
Output is correct |
4 |
Correct |
1 ms |
6480 KB |
Output is correct |
5 |
Correct |
2 ms |
6480 KB |
Output is correct |
6 |
Correct |
1 ms |
6604 KB |
Output is correct |
7 |
Correct |
1 ms |
6480 KB |
Output is correct |
8 |
Correct |
1 ms |
6480 KB |
Output is correct |
9 |
Correct |
1 ms |
6480 KB |
Output is correct |
10 |
Correct |
1 ms |
6480 KB |
Output is correct |
11 |
Correct |
1 ms |
6480 KB |
Output is correct |
12 |
Correct |
2 ms |
6480 KB |
Output is correct |
13 |
Correct |
1 ms |
6480 KB |
Output is correct |
14 |
Correct |
1 ms |
6480 KB |
Output is correct |
15 |
Correct |
1 ms |
6480 KB |
Output is correct |
16 |
Correct |
1 ms |
6592 KB |
Output is correct |
17 |
Correct |
1 ms |
6480 KB |
Output is correct |
18 |
Correct |
1 ms |
6480 KB |
Output is correct |
19 |
Correct |
1 ms |
6480 KB |
Output is correct |
20 |
Correct |
2 ms |
6480 KB |
Output is correct |
21 |
Correct |
1 ms |
6480 KB |
Output is correct |
22 |
Correct |
2 ms |
6484 KB |
Output is correct |
23 |
Correct |
11 ms |
6484 KB |
Output is correct |
24 |
Correct |
12 ms |
6484 KB |
Output is correct |
25 |
Correct |
12 ms |
6720 KB |
Output is correct |
26 |
Correct |
12 ms |
6484 KB |
Output is correct |
27 |
Correct |
11 ms |
6484 KB |
Output is correct |
28 |
Correct |
12 ms |
6648 KB |
Output is correct |
29 |
Correct |
8 ms |
6484 KB |
Output is correct |
30 |
Correct |
10 ms |
6704 KB |
Output is correct |
31 |
Correct |
8 ms |
6484 KB |
Output is correct |
32 |
Correct |
9 ms |
6484 KB |
Output is correct |
33 |
Runtime error |
185 ms |
93204 KB |
Execution killed with signal 6 |
34 |
Halted |
0 ms |
0 KB |
- |