제출 #984191

#제출 시각아이디문제언어결과실행 시간메모리
984191SmuggingSpunHorses (IOI15_horses)C++14
17 / 100
466 ms42016 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)); } bool left_better(int l, int r){ return 1LL * get_x_prod(1, 1, n, l + 1, r) * y[r] < y[l]; } int merge(int pl, int pr){ return left_better(pl, pr) ? pl : pr; } void update_X(int id, int l, int r, int p, int x){ if(l == r){ st[id] = l; x_st[id] = x; } else{ 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) { assert(false); update_X(1, 1, n, pos + 1, val); return 1LL * f[st[1]] * y[st[1]] % mod; } int updateY(int pos, int val) { assert(false); update_Y(pos + 1, val); return 1LL * f[st[1]] * y[st[1]] % mod; }

컴파일 시 표준 에러 (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:41:17: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   41 |   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:65:36: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   65 |   f[i] = 1LL * f[i - 1] * X[i - 1] % mod;
      |          ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp:72:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   72 |  return 1LL * f[st[1]] * y[st[1]] % mod;
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:77:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   77 |  return 1LL * f[st[1]] * y[st[1]] % mod;
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:82:35: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   82 |  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...