답안 #62284

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
62284 2018-07-28T02:32:36 Z Tenuun 말 (IOI15_horses) C++17
0 / 100
56 ms 11320 KB
//#include "horses.h"
#include<bits/stdc++.h>
#define mod 1000000007
#define ll long long
using namespace std;

int n;
ll now=1;
vector<int>x, y, a;

void pre(){
	int last=-1;
	a.push_back(0);
	for(int i=1; i<n; i++){
		if(x[i]>1){
			a.push_back(i);
		}
	}
}

ll rmq(int l, int r){
	ll ans=0;
	for(int i=l; i<=r; i++){
		ans=max(ans, (ll)y[i]);
	}
	return ans;
}

ll find(){
	int last=a.size()-1, ind=a.size();
	ll ans=1;
	ll now=rmq(a[last], n-1);
	for(int i=a.size()-1; i>=0 && now<mod; i--){
		if(now*x[a[i]]>mod) break;
		now*=x[a[i]];
		ind=i;
	}
	ans=now;
	for(int i=a.size()-2; i>=ind; i--){
		now/=x[a[i+1]];
		ans=max(ans, now*rmq(a[i], a[i+1]-1));
	}
	for(int i=ind-1; i>=0; i--){
		ans*=x[i];
		ans%=mod;
	}
	return ans;
}

int init(int N, int X[], int Y[]) {
	n=N;
	for(int i=0; i<n; i++) {x.push_back(X[i]); y.push_back(Y[i]);}
	pre();
	return find();
}

int updateX(int pos, int val) {	
	return 0;
}

int updateY(int pos, int val) {
	return 0;
}

Compilation message

horses.cpp: In function 'void pre()':
horses.cpp:12:6: warning: unused variable 'last' [-Wunused-variable]
  int last=-1;
      ^~~~
horses.cpp: In function 'long long int find()':
horses.cpp:30:19: warning: conversion to 'int' from 'std::vector<int>::size_type {aka long unsigned int}' may alter its value [-Wconversion]
  int last=a.size()-1, ind=a.size();
           ~~~~~~~~^~
horses.cpp:30:33: warning: conversion to 'int' from 'std::vector<int>::size_type {aka long unsigned int}' may alter its value [-Wconversion]
  int last=a.size()-1, ind=a.size();
                           ~~~~~~^~
horses.cpp:32:5: warning: declaration of 'now' shadows a global declaration [-Wshadow]
  ll now=rmq(a[last], n-1);
     ^~~
horses.cpp:8:4: note: shadowed declaration is here
 ll now=1;
    ^~~
horses.cpp:33:20: warning: conversion to 'int' from 'std::vector<int>::size_type {aka long unsigned int}' may alter its value [-Wconversion]
  for(int i=a.size()-1; i>=0 && now<mod; i--){
            ~~~~~~~~^~
horses.cpp:39:20: warning: conversion to 'int' from 'std::vector<int>::size_type {aka long unsigned int}' may alter its value [-Wconversion]
  for(int i=a.size()-2; i>=ind; i--){
            ~~~~~~~~^~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:54:13: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
  return find();
         ~~~~^~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:57:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val) { 
                 ^~~
horses.cpp:57:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val) { 
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:61:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) {
                 ^~~
horses.cpp:61:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateY(int pos, int val) {
                          ^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 3 ms 488 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 488 KB Output is correct
2 Incorrect 3 ms 488 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 56 ms 11320 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 11320 KB Output is correct
2 Incorrect 2 ms 11320 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 11320 KB Output is correct
2 Incorrect 2 ms 11320 KB Output isn't correct
3 Halted 0 ms 0 KB -