Submission #67552

# Submission time Handle Problem Language Result Execution time Memory
67552 2018-08-14T21:33:48 Z JustasZ Xylophone (JOI18_xylophone) C++14
Compilation error
0 ms 0 KB
#include "xylophone.h"
using namespace std;
const int maxn=1e5+100;
void solve(int n)
{
    int arr[maxn];
    int two[maxn], three[maxn], sgn[maxn];
    for(int i=1; i<=n-1; i++)
        two[i]=query(i, i+1);
    for(int i=1; i<=n-2; i++)
        three[i]=query(i, i+2);
    if(three[1]==two[1]+two[2])
        sgn[1]=sgn[2]=1;
    else sgn[1]=1, sgn[2]=-1;
    for(int i=3; i<=n-1; i++)
    {
        if(two[i-1]+two[i]!=three[i-1])
            sgn[i]=-sgn[i-1];
        else sgn[i]=sgn[i-1];
    }
    arr[1]=1;
    int mn=INT_MAX;
    for(int i=2; i<=n; i++)
    {
        arr[i]=arr[i-1]+sgn[i-1]*two[i-1];
        mn=min(mn, arr[i]);
    }
    int add=1-mn;
    if(mn<=0)
    for(int i=1; i<=n; i++)
        arr[i]+=add;
    for(int i=1; i<=n; i++)
    {
        if(arr[i]==1)break;
        if(arr[i]==n)
        {
            for(int j=1; j<=n; j++)
                arr[j]=n-arr[j]+1;
            break;
        }
    }
    for(int i=1; i<=n; i++)
        answer(i, arr[i]);
    return;
}

Compilation message

xylophone.cpp: In function 'void solve(int)':
xylophone.cpp:22:12: error: 'INT_MAX' was not declared in this scope
     int mn=INT_MAX;
            ^~~~~~~
xylophone.cpp:22:12: note: suggested alternative: '__INT_MAX__'
     int mn=INT_MAX;
            ^~~~~~~
            __INT_MAX__
xylophone.cpp:26:12: error: 'min' was not declared in this scope
         mn=min(mn, arr[i]);
            ^~~
xylophone.cpp:26:12: note: suggested alternative: 'mn'
         mn=min(mn, arr[i]);
            ^~~
            mn