제출 #592235

#제출 시각아이디문제언어결과실행 시간메모리
592235l_reho말 (IOI15_horses)C++14
17 / 100
1596 ms8148 KiB


#include <bits/stdc++.h>
using namespace std;

vector<int> A, B;
int L;

long long MOD = 1000000007;

long long modMult(long long a, long long b){	
	return a*b%MOD;
}



long long test(){
	
	long long curr = 1;
	long long best = 1;
	long long pos = -1;
	
	for(int i = 0; i < L; i++){
		curr = (curr*A[i]) % MOD;
		if((curr*B[i])%MOD >= best){
			best = B[i];
			curr = 1;
			pos = i;
		}
	}
	
	long long ans = 1LL;
	for(int i = 0; i <= pos; i++){
		ans = (ans * A[i])%MOD;
	}
	
	ans = (ans*B[pos])%MOD;
	
	return ans;
}

int init(int N, int X[], int Y[]) {
	A.assign(N, 0);
	B.assign(N, 0);
	L = N;
	
	for(int i = 0; i < N; i++) A[i] = X[i], B[i] = Y[i];
	
	
	return test();
}

int updateX(int pos, int val) {
	A[pos] = val;
	return test();
}

int updateY(int pos, int val) {
	B[pos] = val;
	return test();
}

컴파일 시 표준 에러 (stderr) 메시지

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:50:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   50 |  return test();
      |         ~~~~^~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:55:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   55 |  return test();
      |         ~~~~^~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:60:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   60 |  return test();
      |         ~~~~^~
#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...