이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
//
#include<bits/stdc++.h>
using namespace std;
const int N=1100009;
long long a,b,c,d,e,i,j,ii,jj,zx,xc,tp,tes,t,X[500009],Y[500009],seg[N],seg2[N],seg3[N],za,mod=100000007LL,x,y,xx,yy;
bool bo2[N],bo3[N];
void up(int q){
if(q==0) return;
x=X[seg[q*2]];y=Y[seg[q*2]];
xx=X[seg[q*2+1]];yy=Y[seg[q*2+1]];
if(bo3[q*2]==1||bo2[q*2+1]==1){
seg[q]=seg[q*2+1];
}else{
bool bo=0;
zx=seg3[q*2]*seg2[q*2+1];
if(zx>mod) bo=1;
zx%=mod;
zx*=xx;
if(zx>mod) bo=1;
zx%=mod;
zx*=yy;
if(zx>mod) bo=1;
zx%=mod;
if(bo==1||zx>y){
seg[q]=seg[q*2+1];
}else{
seg[q]=seg[q*2];
}
}
if(seg[q]==seg[q*2]){
seg2[q]=seg2[q*2];
bo2[q]=bo2[q*2];
bool bo=0;
zx=seg3[q*2]*seg2[q*2+1];
if(zx>mod) bo=1;
zx%=mod;
zx*=xx;
if(zx>mod) bo=1;
zx%=mod;
zx*=seg3[q*2+1];
if(zx>mod) bo=1;
zx%=mod;
if(bo3[q*2]==1||bo2[q*2+1]==1||bo3[q*2+1]==1) bo=1;
bo3[q]=bo;
seg3[q]=zx;
}else{
seg3[q]=seg3[q*2+1];
bo3[q]=bo3[q*2+1];
bool bo=0;
zx=seg2[q*2+1]*seg3[q*2];
if(zx>mod) bo=1;
zx%=mod;
zx*=x;
if(zx>mod) bo=1;
zx%=mod;
zx*=seg2[q*2];
if(zx>mod) bo=1;
zx%=mod;
if(bo2[q*2+1]==1||bo3[q*2]==1||bo2[q*2]==1) bo=1;
bo2[q]=bo;
seg2[q]=zx;
}
up(q/2);
}
void upd(int q){
seg[q+za-1]=q;
seg2[q+za-1]=seg3[q+za-1]=1LL;
bo2[q+za-1]=bo3[q+za-1]=0;
up((q+za-1)/2);
}
//
int init(int N, int XX[], int YY[]) {
a=N;
for(i=1; i<=a; i++){
X[i]=XX[i-1];Y[i]=YY[i-1];
}
za=1;
while(za<a) za*=2;
for(i=1; i<=za; i++){
upd(i);
}
zx=1;xc=0;
for(i=1; i<=a; i++){
zx*=X[i];
if(zx*Y[i]>xc) xc=zx*Y[i];
}
return xc;
}
int updateX(int pos, int val) {
c=pos;d=val;
c++;
X[c]=d;
zx=1;xc=0;
for(i=1; i<=a; i++){
zx*=X[i];
if(zx*Y[i]>xc) xc=zx*Y[i];
}
return xc;
}
int updateY(int pos, int val) {
c=pos;d=val;
c++;
Y[c]=d;
zx=1;xc=0;
for(i=1; i<=a; i++){
zx*=X[i];
if(zx*Y[i]>xc) xc=zx*Y[i];
}
return xc;
}
컴파일 시 표준 에러 (stderr) 메시지
horses.cpp: In function 'void upd(int)':
horses.cpp:70:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
70 | up((q+za-1)/2);
| ~~~~~~~~^~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:73:35: warning: declaration of 'N' shadows a global declaration [-Wshadow]
73 | int init(int N, int XX[], int YY[]) {
| ^
horses.cpp:5:11: note: shadowed declaration is here
5 | const int N=1100009;
| ^
horses.cpp:81:7: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
81 | upd(i);
| ^
horses.cpp:88:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
88 | return xc;
| ^~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:100:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
100 | return xc;
| ^~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:112:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
112 | return xc;
| ^~
# | 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... |