이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#include "horses.h"
#include <vector>
#define ll long long
#define MOD 1000000007
using namespace std;
struct num
{
ll a; ll b;
num(ll x, ll y): a(x), b(y) {};
void operator*=(ll x)
{
a *= x;
b *= x;
if(b >= MOD)
{
b %= MOD;
++a;
}
}
bool operator<(const num &n) const
{
if(a != n.a) return a < n.a;
else return b < n.b;
}
};
vector<num> mult;
vector<ll> x, y;
int ans()
{
num maxVal(0, 0);
for(int i = 0; i < mult.size(); i++)
{
num tmp = mult[i];
tmp *= y[i];
maxVal = max(maxVal, tmp);
}
return maxVal.b;
}
int init(int N, int X[], int Y[])
{
mult.assign(N, num(0, 0));
mult[0].b = X[0];
x.assign(N, 0);
x[0] = X[0];
y.assign(N, 0);
y[0] = Y[0];
for(int i = 1; i < N; i++)
{
y[i] = (ll)Y[i];
x[i] = (ll)X[i];
num tmp = mult[i - 1];
tmp *= x[i];
mult[i] = tmp;
}
return ans();
}
int updateX(int pos, int val)
{
x[pos] = (ll)val;
if(!pos)
{
mult[0].b = x[0];
pos++;
}
for(int i = pos; i < mult.size(); i++)
{
num tmp = mult[i - 1];
tmp *= x[i];
mult[i] = tmp;
}
return ans();
}
int updateY(int pos, int val)
{
y[pos] = (ll)val;
return ans();
}
컴파일 시 표준 에러 (stderr) 메시지
horses.cpp: In function 'int ans()':
horses.cpp:37:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<num>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for(int i = 0; i < mult.size(); i++)
| ~~^~~~~~~~~~~~~
horses.cpp:44:19: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
44 | return maxVal.b;
| ~~~~~~~^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:79:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<num>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | for(int i = pos; i < mult.size(); i++)
| ~~^~~~~~~~~~~~~
# | 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... |