Submission #929208

#TimeUsernameProblemLanguageResultExecution timeMemory
929208OAleksaHorses (IOI15_horses)C++14
17 / 100
282 ms69712 KiB
#include "horses.h" #include <bits/stdc++.h> using namespace std; const int mod = 1e9 + 7; const int inf = 1e9 + 69; const int N = 5e5 + 69; long long n, a[N], b[N], c[N], p[4 * N], g[4 * N]; set<int> st; long long mul(long long x, long long y) { long long r = 1ll * x * y; if (r >= mod) r %= mod; return r; } void modify(int v, int tl, int tr, int pos, int x) { if (tl == tr) p[v] = g[v] = x; else { int mid = (tl + tr) / 2; if (pos <= mid) modify(v * 2, tl, mid, pos, x); else modify(v * 2 + 1, mid + 1, tr, pos, x); if (p[v * 2] == -1 || p[v * 2 + 1] == -1 || p[v * 2] > inf / p[v * 2 + 1]) p[v] = -1; else p[v] = p[v * 2] * p[v * 2 + 1]; g[v] = mul(g[v * 2], g[v * 2 + 1]); } } long long get(int v, int tl, int tr, int l, int r) { if (tl > r || tr < l) return 1; else if (tl >= l && tr <= r) return p[v]; else { int mid = (tl + tr) / 2; auto l1 = get(v * 2, tl, mid, l, r); auto r1 = get(v * 2 + 1, mid + 1, tr, l, r); if (l1 == -1 || r1 == -1 || l1 > inf / r1) return -1; return l1 * r1; } } long long Get(int v, int tl, int tr, int l, int r) { if (tl > r || tr < l) return 1; else if (tl >= l && tr <= r) return g[v]; else { int mid = (tl + tr) / 2; return mul(Get(v * 2, tl, mid, l, r), Get(v * 2 + 1, mid + 1, tr, l, r)); } } int Better(int i, int j) { if (i > j) swap(i, j); long long x = get(1, 1, n, i + 1, j); if (x < 0) return j; return (b[i] / b[j] > x ? i : j); } long long Result(int i) { return mul(Get(1, 1, n, 1, i), b[i]); } int Solve() { int bst = 1, x = a[1]; st.insert(1); for (int i = 2;i <= n;i++) { if (x > inf / a[i]) { x = 1; bst = i; st.insert(i); } else { x *= a[i]; if (b[i] > b[bst] / x) { x = 1; bst = i; st.insert(i); } } } return Result(bst); } int init(int N, int X[], int Y[]) { n = N; fill(p, p + 4 * n + 10, 1); fill(g, g + 4 * n + 10, 1); for (int i = 1;i <= n;i++) { a[i] = X[i - 1], b[i] = Y[i - 1]; modify(1, 1, n, i, a[i]); } return Solve(); } int updateX(int pos, int val) { pos++; a[pos] = val; modify(1, 1, n, pos, a[pos]); auto u = st.lower_bound(pos); if (u != st.begin()) { if (Better(*--u, pos) == pos) st.insert(pos); else if (st.count(pos)) st.erase(pos); } u = st.upper_bound(pos); while (u != st.end() && Better(*u, pos) == pos) { st.erase(u); u = st.upper_bound(pos); } assert(!st.empty()); return Result(*st.rbegin()); } int updateY(int pos, int val) { pos++; b[pos] = val; auto u = st.lower_bound(pos); if (u != st.begin()) { if (Better(*--u, pos) == pos) st.insert(pos); else if (st.count(pos)) st.erase(pos); } u = st.upper_bound(pos); while (u != st.end() && Better(*u, pos) == pos) { st.erase(u); u = st.upper_bound(pos); } assert(!st.empty()); return Result(*st.rbegin()); } /* 3 2 1 3 3 4 1 1 2 1 2 */

Compilation message (stderr)

horses.cpp: In function 'int Better(int, int)':
horses.cpp:58:28: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   58 |    long long x = get(1, 1, n, i + 1, j);
      |                            ^
horses.cpp: In function 'long long int Result(int)':
horses.cpp:64:25: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   64 |    return mul(Get(1, 1, n, 1, i), b[i]);
      |                         ^
horses.cpp: In function 'int Solve()':
horses.cpp:67:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   67 |    int bst = 1, x = a[1];
      |                     ~~~^
horses.cpp:76:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   76 |          x *= a[i];
      |          ~~^~~~~~~
horses.cpp:84:17: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   84 |    return Result(bst);
      |           ~~~~~~^~~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:87:14: warning: declaration of 'N' shadows a global declaration [-Wshadow]
   87 | int init(int N, int X[], int Y[]) {
      |          ~~~~^
horses.cpp:6:11: note: shadowed declaration is here
    6 | const int N = 5e5 + 69;
      |           ^
horses.cpp:93:20: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   93 |       modify(1, 1, n, i, a[i]);
      |                    ^
horses.cpp:93:29: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   93 |       modify(1, 1, n, i, a[i]);
      |                          ~~~^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:101:17: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  101 |    modify(1, 1, n, pos, a[pos]);
      |                 ^
horses.cpp:101:30: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  101 |    modify(1, 1, n, pos, a[pos]);
      |                         ~~~~~^
horses.cpp:115:15: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  115 |  return Result(*st.rbegin());
      |         ~~~~~~^~~~~~~~~~~~~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:134:15: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
  134 |  return Result(*st.rbegin());
      |         ~~~~~~^~~~~~~~~~~~~~
#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...