Submission #140521

#TimeUsernameProblemLanguageResultExecution timeMemory
140521PedroBigManHorses (IOI15_horses)C++14
Compilation error
0 ms0 KiB
//#include "horses.h"
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define REP(i,a,b) for(ll i=a; i<b; i++)
#define pb push_back
#define mp make_pair
#define pl pair<ll,ll>
#define ff first
#define ss second
#define INF ((ll) pow(2,63) -1)
ll insig;
#define In(vecBRO, LENBRO) REP(IBRO,0,LENBRO) {cin>>insig; vecBRO.pb(insig);}
void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
ll mod = 1000000007;
int init(int N, int X[], int Y[]) 
{
    vector<ld> lx,ly; 
    REP(i,0,N) 
    {
        lx.pb((ld) log10(X[i]));
        ly.pb((ld) log10(Y[i]));
    }
    ld am = lx[0]+ly[0]; ld mx=am;
    REP(i,1,N)
    {
        am-=ly[i-1]; am+=ly[i]; am+= lx[i];
        mx=max(mx,am);
    }
    ld ans=(ld) 1;
    while(mx>=1)
    {
        ans*=(ld) 10; ans%=(ld) mod; mx=(ld) ((mx)-(ld) (1));
    }
    ans *= (ld) ((pow(10,mx)));
    ans%=mod;
    return round(ans);
}

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

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

/*int main()
{
    ll N; cin>>N; int X[N], Y[N];
    REP(i,0,N) {cin>>X[i]>>Y[i];}
    cout<<init(N,X,Y)<<endl;
}*/

Compilation message (stderr)

horses.cpp: In function 'void Out(std::vector<long long int>)':
horses.cpp:11:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(i,a,b) for(ll i=a; i<b; i++)
horses.cpp:20:29:
 void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
                             ~~~~~~~~~~~~
horses.cpp:20:25: note: in expansion of macro 'REP'
 void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
                         ^~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:39:26: error: invalid operands of types 'ld {aka long double}' and 'ld {aka long double}' to binary 'operator%'
         ans*=(ld) 10; ans%=(ld) mod; mx=(ld) ((mx)-(ld) (1));
                       ~~~^~~~~~~~~~
horses.cpp:39:33: error:   in evaluation of 'operator%=(ld {aka long double}, ld {aka long double})'
         ans*=(ld) 10; ans%=(ld) mod; mx=(ld) ((mx)-(ld) (1));
                                 ^~~
horses.cpp:42:8: error: invalid operands of types 'ld {aka long double}' and 'll {aka long long int}' to binary 'operator%'
     ans%=mod;
     ~~~^~~~~
horses.cpp:42:10: error:   in evaluation of 'operator%=(ld {aka long double}, ll {aka long long int})'
     ans%=mod;
          ^~~
horses.cpp:43:17: warning: conversion to 'int' from 'long double' may alter its value [-Wfloat-conversion]
     return round(ans);
            ~~~~~^~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:46:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val)
                 ^~~
horses.cpp:46:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val)
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:51:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) 
                 ^~~
horses.cpp:51:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateY(int pos, int val) 
                          ^~~