답안 #32247

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
32247 2017-10-05T04:03:47 Z dqhungdl Gap (APIO16_gap) C++14
0 / 100
33 ms 5920 KB
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;

long long a[100005];

long long findGap(int T, int n)
{
    if(T==1)
    {
        MinMax(0,1e18,&a[1],&a[n]);
        int i=2,j=n-1;
        while(i<=j)
        {
            MinMax(a[i-1]+1,a[j+1]-1,&a[i],&a[j]);
            i--;
            j++;
        }
        long long res=0;
        for(int i=2; i<=n; i++)
            res=max(res,a[i]-a[i-1]);
        return res;
    }
    /*else
    {
        for(int i=1;i<=n;i++)
            a[i]=-1;
        MinMax(0,1e18,&a[1],&a[n]);
        int i=2,j=n-1,Count=0;
        while(i<=j)
        {
            Count++;
            if(Count>100)
                break;
            MinMax(a[i-1]+1,a[j+1]-1,&a[i],&a[j]);
            i--;
            j++;
        }
        long long res=0;
        for(int i=2; i<=n; i++)
            if(a[i]!=-1&&a[i-1]!=-1)
                res=max(res,a[i]-a[i-1]);
        return res;
    }*/
}

Compilation message

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:45:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 5920 KB Output is correct
2 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
3 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
4 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
5 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
6 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
7 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
8 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
9 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
10 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
11 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
12 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
13 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
14 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
15 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
16 Incorrect 9 ms 5920 KB Unexpected end of file - int64 expected
17 Incorrect 3 ms 5920 KB Unexpected end of file - int64 expected
18 Incorrect 3 ms 5920 KB Unexpected end of file - int64 expected
19 Incorrect 9 ms 5920 KB Unexpected end of file - int64 expected
20 Incorrect 3 ms 5920 KB Unexpected end of file - int64 expected
21 Incorrect 33 ms 5920 KB Unexpected end of file - int64 expected
22 Incorrect 29 ms 5920 KB Unexpected end of file - int64 expected
23 Incorrect 29 ms 5920 KB Unexpected end of file - int64 expected
24 Incorrect 26 ms 5920 KB Unexpected end of file - int64 expected
25 Incorrect 26 ms 5920 KB Unexpected end of file - int64 expected
26 Incorrect 29 ms 5920 KB Unexpected end of file - int64 expected
27 Incorrect 29 ms 5920 KB Unexpected end of file - int64 expected
28 Incorrect 16 ms 5920 KB Unexpected end of file - int64 expected
29 Incorrect 26 ms 5920 KB Unexpected end of file - int64 expected
30 Incorrect 16 ms 5920 KB Unexpected end of file - int64 expected
31 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
32 Incorrect 0 ms 5920 KB Unexpected end of file - int64 expected
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 5920 KB Output isn't correct
2 Incorrect 0 ms 5920 KB Output isn't correct
3 Incorrect 0 ms 5920 KB Output isn't correct
4 Incorrect 0 ms 5920 KB Output isn't correct
5 Incorrect 0 ms 5920 KB Output isn't correct
6 Incorrect 0 ms 5920 KB Output isn't correct
7 Incorrect 0 ms 5920 KB Output isn't correct
8 Incorrect 0 ms 5920 KB Output isn't correct
9 Incorrect 0 ms 5920 KB Output isn't correct
10 Incorrect 0 ms 5920 KB Output isn't correct
11 Incorrect 0 ms 5920 KB Output isn't correct
12 Incorrect 0 ms 5920 KB Output isn't correct
13 Incorrect 0 ms 5920 KB Output isn't correct
14 Incorrect 0 ms 5920 KB Output isn't correct
15 Incorrect 0 ms 5920 KB Output isn't correct
16 Incorrect 3 ms 5920 KB Output isn't correct
17 Incorrect 9 ms 5920 KB Output isn't correct
18 Incorrect 9 ms 5920 KB Output isn't correct
19 Incorrect 6 ms 5920 KB Output isn't correct
20 Incorrect 3 ms 5920 KB Output isn't correct
21 Incorrect 19 ms 5920 KB Output isn't correct
22 Incorrect 29 ms 5920 KB Output isn't correct
23 Incorrect 29 ms 5920 KB Output isn't correct
24 Incorrect 23 ms 5920 KB Output isn't correct
25 Incorrect 13 ms 5920 KB Output isn't correct
26 Incorrect 26 ms 5920 KB Output isn't correct
27 Incorrect 29 ms 5920 KB Output isn't correct
28 Incorrect 23 ms 5920 KB Output isn't correct
29 Incorrect 26 ms 5920 KB Output isn't correct
30 Incorrect 16 ms 5920 KB Output isn't correct
31 Incorrect 0 ms 5920 KB Output isn't correct
32 Incorrect 0 ms 5920 KB Output isn't correct