제출 #791178

#제출 시각아이디문제언어결과실행 시간메모리
791178Khizri말 (IOI15_horses)C++17
37 / 100
510 ms53028 KiB
#include "horses.h" #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back #define F first #define S second #define INF 1e18 #define all(v) (v).begin(),(v).end() #define rall(v) (v).rbegin(),(v).rend() #define pii pair<int,int> #define pll pair<ll,ll> #define OK cout<<"Ok"<<endl; #define MOD (ll)(1e9+7) const int mxn=5e5+5; ll n,idx[mxn],arr[mxn],tree2[mxn*4]; ll tree[4*mxn]; set<int>st; void build(int node,int l,int r){ if(l==r){ tree[node]=idx[l]; return; } int m=(l+r)/2; build(2*node,l,m); build(2*node+1,m+1,r); tree[node]=(tree[2*node]*tree[2*node+1])%MOD; } void build2(int node,int l,int r){ if(l==r){ tree2[node]=arr[l]; return; } int m=(l+r)/2; build2(2*node,l,m); build2(2*node+1,m+1,r); tree2[node]=max(tree2[2*node],tree2[2*node+1]); } void update(int node,int l,int r,int pos,int val){ if(l>pos||r<pos) return; if(l==r){ tree[node]=val; return; } int m=(l+r)/2; update(2*node,l,m,pos,val); update(2*node+1,m+1,r,pos,val); tree[node]=(tree[2*node]*tree[2*node+1])%MOD; } void update2(int node,int l,int r,int pos,int val){ if(l>pos||r<pos) return; if(l==r){ tree2[node]=val; return; } int m=(l+r)/2; update2(2*node,l,m,pos,val); update2(2*node+1,m+1,r,pos,val); tree2[node]=max(tree2[2*node],tree2[2*node+1]); } ll query(int node,int l,int r,int ql,int qr){ if(l>qr||r<ql) return 1; if(ql<=l&&r<=qr) return tree[node]; int m=(l+r)/2; return (query(2*node,l,m,ql,qr)*query(2*node+1,m+1,r,ql,qr))%MOD; } int query2(int node,int l,int r,int ql,int qr){ if(l>qr||r<ql) return 0; if(ql<=l&&r<=qr) return tree2[node]; int m=(l+r)/2; return max(query2(2*node,l,m,ql,qr),query2(2*node+1,m+1,r,ql,qr)); } int init(int N, int X[], int Y[]) { n=N; for(int i=0;i<n;i++){ arr[i+1]=Y[i]; idx[i+1]=X[i]; if(idx[i+1]>1){ st.insert(i+1); } } build(1,1,n); build2(1,1,n); int k=min(32,(int)st.size()); auto it=st.end(); ll res=query2(1,1,n,1,n); if(st.size()){ it=--st.end(); } else{ return res; } ll a=1; vector<int>vt; while(k--){ int x=*it; a=1ll*a*idx[x]; vt.pb(x); if(a>=1e9) break; it--; } unsigned ll ans=1; unsigned ll mx=1; reverse(all(vt)); int q=0; vt.pb(n+1); for(int i=0;i<vt.size()-1;i++){ ans*=idx[vt[i]]; int l=vt[i],r=vt[i+1]-1; unsigned ll k=ans*query2(1,1,n,l,n); if(k>mx){ mx=k; q=i; } } int l=vt[q],r=vt[q+1]-1; res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD; return res; } int updateX(int pos, int val) { pos++; if(idx[pos]>1){ st.erase(pos); } idx[pos]=val; if(idx[pos]>1){ st.insert(pos); } update(1,1,n,pos,val); int k=min(32,(int)st.size()); auto it=st.end(); ll res=query2(1,1,n,1,n); if(st.size()){ it=--st.end(); } else{ return res; } ll a=1; vector<int>vt; while(k--){ int x=*it; a=1ll*a*idx[x]; vt.pb(x); if(a>=1e9) break; it--; } unsigned ll ans=1; unsigned ll mx=1; reverse(all(vt)); int q=0; vt.pb(n+1); for(int i=0;i<vt.size()-1;i++){ ans*=idx[vt[i]]; int l=vt[i],r=vt[i+1]-1; unsigned ll k=ans*query2(1,1,n,l,n); if(k>mx){ mx=k; q=i; } } int l=vt[q],r=vt[q+1]-1; res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD; return res; } int updateY(int pos, int val) { pos++; arr[pos]=val; update2(1,1,n,pos,val); int k=min(32,(int)st.size()); auto it=st.end(); ll res=query2(1,1,n,1,n); if(st.size()){ it=--st.end(); } else{ return res; } ll a=1; vector<int>vt; while(k--){ int x=*it; a=1ll*a*idx[x]; vt.pb(x); if(a>=1e9) break; it--; } unsigned ll ans=1; unsigned ll mx=1; reverse(all(vt)); int q=0; vt.pb(n+1); for(int i=0;i<vt.size()-1;i++){ ans*=idx[vt[i]]; int l=vt[i],r=vt[i+1]-1; unsigned ll k=ans*query2(1,1,n,l,n); if(k>mx){ mx=k; q=i; } } int l=vt[q],r=vt[q+1]-1; res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD; return res; }

컴파일 시 표준 에러 (stderr) 메시지

horses.cpp: In function 'int query2(int, int, int, int, int)':
horses.cpp:69:39: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   69 |     if(ql<=l&&r<=qr) return tree2[node];
      |                             ~~~~~~~~~~^
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:82:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   82 |  build(1,1,n);
      |            ^
horses.cpp:83:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   83 |  build2(1,1,n);
      |             ^
horses.cpp:86:20: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   86 |  ll res=query2(1,1,n,1,n);
      |                    ^
horses.cpp:86:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   86 |  ll res=query2(1,1,n,1,n);
      |                        ^
horses.cpp:91:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   91 |         return res;
      |                ^~~
horses.cpp:99:12: warning: conversion from 'long long int' to 'double' may change value [-Wconversion]
   99 |         if(a>=1e9) break;
      |            ^
horses.cpp:106:9: warning: conversion from 'long long int' to 'std::vector<int>::value_type' {aka 'int'} may change value [-Wconversion]
  106 |  vt.pb(n+1);
      |        ~^~
horses.cpp:107:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  107 |  for(int i=0;i<vt.size()-1;i++){
      |              ~^~~~~~~~~~~~
horses.cpp:110:21: warning: declaration of 'k' shadows a previous local [-Wshadow]
  110 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                     ^
horses.cpp:84:6: note: shadowed declaration is here
   84 |  int k=min(32,(int)st.size());
      |      ^
horses.cpp:110:38: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  110 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                      ^
horses.cpp:110:42: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  110 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                          ^
horses.cpp:109:21: warning: unused variable 'r' [-Wunused-variable]
  109 |         int l=vt[i],r=vt[i+1]-1;
      |                     ^
horses.cpp:117:21: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  117 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                     ^
horses.cpp:117:43: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  117 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                           ^
horses.cpp:117:47: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  117 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                               ^
horses.cpp:118:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  118 |  return res;
      |         ^~~
horses.cpp:116:14: warning: unused variable 'r' [-Wunused-variable]
  116 |  int l=vt[q],r=vt[q+1]-1;
      |              ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:130:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  130 |  update(1,1,n,pos,val);
      |             ^
horses.cpp:133:20: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  133 |  ll res=query2(1,1,n,1,n);
      |                    ^
horses.cpp:133:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  133 |  ll res=query2(1,1,n,1,n);
      |                        ^
horses.cpp:138:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  138 |         return res;
      |                ^~~
horses.cpp:146:12: warning: conversion from 'long long int' to 'double' may change value [-Wconversion]
  146 |         if(a>=1e9) break;
      |            ^
horses.cpp:153:9: warning: conversion from 'long long int' to 'std::vector<int>::value_type' {aka 'int'} may change value [-Wconversion]
  153 |  vt.pb(n+1);
      |        ~^~
horses.cpp:154:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  154 |  for(int i=0;i<vt.size()-1;i++){
      |              ~^~~~~~~~~~~~
horses.cpp:157:21: warning: declaration of 'k' shadows a previous local [-Wshadow]
  157 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                     ^
horses.cpp:131:6: note: shadowed declaration is here
  131 |  int k=min(32,(int)st.size());
      |      ^
horses.cpp:157:38: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  157 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                      ^
horses.cpp:157:42: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  157 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                          ^
horses.cpp:156:21: warning: unused variable 'r' [-Wunused-variable]
  156 |         int l=vt[i],r=vt[i+1]-1;
      |                     ^
horses.cpp:164:21: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  164 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                     ^
horses.cpp:164:43: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  164 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                           ^
horses.cpp:164:47: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  164 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                               ^
horses.cpp:165:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  165 |  return res;
      |         ^~~
horses.cpp:163:14: warning: unused variable 'r' [-Wunused-variable]
  163 |  int l=vt[q],r=vt[q+1]-1;
      |              ^
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:171:14: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  171 |  update2(1,1,n,pos,val);
      |              ^
horses.cpp:174:20: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  174 |  ll res=query2(1,1,n,1,n);
      |                    ^
horses.cpp:174:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  174 |  ll res=query2(1,1,n,1,n);
      |                        ^
horses.cpp:179:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  179 |         return res;
      |                ^~~
horses.cpp:187:12: warning: conversion from 'long long int' to 'double' may change value [-Wconversion]
  187 |         if(a>=1e9) break;
      |            ^
horses.cpp:194:9: warning: conversion from 'long long int' to 'std::vector<int>::value_type' {aka 'int'} may change value [-Wconversion]
  194 |  vt.pb(n+1);
      |        ~^~
horses.cpp:195:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  195 |  for(int i=0;i<vt.size()-1;i++){
      |              ~^~~~~~~~~~~~
horses.cpp:198:21: warning: declaration of 'k' shadows a previous local [-Wshadow]
  198 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                     ^
horses.cpp:172:6: note: shadowed declaration is here
  172 |  int k=min(32,(int)st.size());
      |      ^
horses.cpp:198:38: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  198 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                      ^
horses.cpp:198:42: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  198 |         unsigned ll k=ans*query2(1,1,n,l,n);
      |                                          ^
horses.cpp:197:21: warning: unused variable 'r' [-Wunused-variable]
  197 |         int l=vt[i],r=vt[i+1]-1;
      |                     ^
horses.cpp:205:21: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  205 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                     ^
horses.cpp:205:43: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  205 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                           ^
horses.cpp:205:47: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  205 |  res=(1ll*query(1,1,n,1,vt[q])*query2(1,1,n,l,n))%MOD;
      |                                               ^
horses.cpp:206:9: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  206 |  return res;
      |         ^~~
horses.cpp:204:14: warning: unused variable 'r' [-Wunused-variable]
  204 |  int l=vt[q],r=vt[q+1]-1;
      |              ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...