답안 #631933

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
631933 2022-08-19T07:47:09 Z Stavab 말 (IOI15_horses) C++14
컴파일 오류
0 ms 0 KB
#include <vector>

using namespace std;

vector<long long> mult, y, x;

long long ans()
{
    int maxVal = 0;
    for(int i = 0; i < mult.size(); i++)
    {
        maxVal = max(maxVal, mult[i]*y[i] % 1000000007);
    }
    
    return maxVal;
}

long long init(int N, vector<long long> X, vector<long long> Y)
{
    mult.assign(N, 0);
    mult[0] = 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++)
    {
        mult[i] = (mult[i - 1] * X[i]) % 1000000007;
        y[i] = Y[i];
        x[i] = X[i];
    }
    
    return ans();
}

int updateX(int pos, int val)
{
    x[pos] = val;
    for(int i = pos; i < N; i++)
        mult[i] = mult[i - 1] * x[i];
    return ans();
}

int updateY(int pos, int val)
{
    y[pos] = val;
    return ans();
}

Compilation message

horses.cpp: In function 'long long int ans()':
horses.cpp:10:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |     for(int i = 0; i < mult.size(); i++)
      |                    ~~^~~~~~~~~~~~~
horses.cpp:12:55: error: no matching function for call to 'max(int&, __gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type)'
   12 |         maxVal = max(maxVal, mult[i]*y[i] % 1000000007);
      |                                                       ^
In file included from /usr/include/c++/10/vector:60,
                 from horses.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
horses.cpp:12:55: note:   deduced conflicting types for parameter 'const _Tp' ('int' and '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'})
   12 |         maxVal = max(maxVal, mult[i]*y[i] % 1000000007);
      |                                                       ^
In file included from /usr/include/c++/10/vector:60,
                 from horses.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
horses.cpp:12:55: note:   deduced conflicting types for parameter 'const _Tp' ('int' and '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'})
   12 |         maxVal = max(maxVal, mult[i]*y[i] % 1000000007);
      |                                                       ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:40:26: error: 'N' was not declared in this scope
   40 |     for(int i = pos; i < N; i++)
      |                          ^
horses.cpp:42:15: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   42 |     return ans();
      |            ~~~^~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:48:15: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   48 |     return ans();
      |            ~~~^~