Submission #984203

#TimeUsernameProblemLanguageResultExecution timeMemory
984203SmuggingSpunHorses (IOI15_horses)C++14
17 / 100
613 ms22216 KiB
#include "horses.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int lim = 5e5 + 5; int n, st[lim << 2], x_st[lim << 2], y[lim], f[lim]; int get_x_prod(int id, int l, int r, int u, int v){ if(l > v || r < u){ return 1; } if(u <= l && v >= r){ return x_st[id]; } int m = (l + r) >> 1, left = get_x_prod(id << 1, l, m, u, v); if(left == mod){ return mod; } return min(ll(mod), 1LL * left * get_x_prod(id << 1 | 1, m + 1, r, u, v)); } int merge(int l, int r){ if(l == 0){ return r; } if(r == 0){ return l; } return 1LL * get_x_prod(1, 1, n, l + 1, r) * y[r] < ll(y[l]) ? l : r; } void update_X(int id, int l, int r, int p, int x){ if(l == r){ st[id] = l; x_st[id] = x; return; } int m = (l + r) >> 1; if(m < p){ update_X(id << 1 | 1, m + 1, r, p, x); } else{ update_X(id << 1, l, m, p, x); } st[id] = merge(st[id << 1], st[id << 1 | 1]); x_st[id] = min(ll(mod), 1LL * x_st[id << 1] * x_st[id << 1 | 1]); } void update_Y(int p, int Y){ y[p] = Y; int id = 1, l = 1, r = n; while(l < r){ int m = (l + r) >> 1; id <<= 1; if(m < p){ l = m + 1; id |= 1; } else{ r = m; } } while((id >>= 1) > 0){ st[id] = merge(st[id << 1], st[id << 1 | 1]); } } int init(int N, int X[], int Y[]){ n = N; for(int i = f[0] = 1; i <= n; i++){ f[i] = 1LL * f[i - 1] * X[i - 1] % mod; y[i] = Y[i - 1]; } fill(x_st, x_st + (lim << 2), 1); for(int i = 1; i <= n; i++){ update_X(1, 1, n, i, X[i - 1]); } return 1LL * f[st[1]] * y[st[1]] % mod; } int updateX(int pos, int val){ update_X(1, 1, n, pos + 1, val); assert(st[1] != 0); return 1LL * f[st[1]] * y[st[1]] % mod; } int updateY(int pos, int val){ update_Y(pos + 1, val); assert(st[1] != 0); return 1LL * f[st[1]] * y[st[1]] % mod; }

Compilation message (stderr)

horses.cpp: In function 'int get_x_prod(int, int, int, int, int)':
horses.cpp:19:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   19 |  return min(ll(mod), 1LL * left * get_x_prod(id << 1 | 1, m + 1, r, u, v));
      |         ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
horses.cpp: In function 'void update_X(int, int, int, int, int)':
horses.cpp:44:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   44 |  x_st[id] = min(ll(mod), 1LL * x_st[id << 1] * x_st[id << 1 | 1]);
      |             ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:67:36: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   67 |   f[i] = 1LL * f[i - 1] * X[i - 1] % mod;
      |          ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp:74:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   74 |  return 1LL * f[st[1]] * y[st[1]] % mod;
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:79:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   79 |  return 1LL * f[st[1]] * y[st[1]] % mod;
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:84:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   84 |  return 1LL * f[st[1]] * y[st[1]] % mod;
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
#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...