답안 #873311

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
873311 2023-11-14T19:53:43 Z StefanL2005 Gap (APIO16_gap) C++14
30 / 100
288 ms 3876 KB
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
#define ll long long
 
ll findGap(int T, int N)
{
    vector<ll> v(N);
    ll maxDif = 0;

    if (T == 1)
    {
        int p1 = 0, p2 = N - 1;
        ll a = -1, b = 1LL * 1000 * 1000 * 1000 * 1000 * 1000 * 1000+ 1;
 
        while (p1 <= p2)
        {
            ll c1, c2;
            MinMax(a + 1, b - 1, &c1, &c2);
            v[p1] = c1;
            v[p2] = c2;
            p1++; p2--;
            a = c1; b = c2;
        }
 
        for (int i = 1; i < N; i++)
            maxDif = max(maxDif, v[i] - v[i - 1]);
    }
    else
    {
        ll start, finish;
        MinMax(0, 1LL * 1000 * 1000 * 1000 * 1000 * 1000 * 1000, &start, &finish);
        while (start != finish)
       { 
            int p = 0;
            ll a, b;
            MinMax(start + 1, start + (1 << p), &a, &b);
            while (b == -1)
            {
                p++;
                if (start + (1 << p) >= finish)
                    MinMax(start + 1, finish, &a, &b);
                else
                    MinMax(start + 1, start  + (1 << p), &a, &b);
            }

            maxDif = max(maxDif, a - start);
            start = b;
        }
    }
    return maxDif;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 2392 KB Output is correct
3 Correct 0 ms 2392 KB Output is correct
4 Correct 0 ms 2392 KB Output is correct
5 Correct 1 ms 2392 KB Output is correct
6 Correct 1 ms 2392 KB Output is correct
7 Correct 0 ms 2392 KB Output is correct
8 Correct 0 ms 2392 KB Output is correct
9 Correct 1 ms 2392 KB Output is correct
10 Correct 0 ms 2392 KB Output is correct
11 Correct 1 ms 2392 KB Output is correct
12 Correct 1 ms 2392 KB Output is correct
13 Correct 1 ms 2392 KB Output is correct
14 Correct 1 ms 2516 KB Output is correct
15 Correct 1 ms 2392 KB Output is correct
16 Correct 8 ms 2696 KB Output is correct
17 Correct 8 ms 2588 KB Output is correct
18 Correct 8 ms 2580 KB Output is correct
19 Correct 8 ms 2580 KB Output is correct
20 Correct 6 ms 2576 KB Output is correct
21 Correct 30 ms 3544 KB Output is correct
22 Correct 30 ms 3628 KB Output is correct
23 Correct 30 ms 3864 KB Output is correct
24 Correct 30 ms 3628 KB Output is correct
25 Correct 27 ms 3624 KB Output is correct
26 Correct 30 ms 3624 KB Output is correct
27 Correct 30 ms 3628 KB Output is correct
28 Correct 30 ms 3624 KB Output is correct
29 Correct 33 ms 3876 KB Output is correct
30 Correct 25 ms 3620 KB Output is correct
31 Correct 0 ms 2392 KB Output is correct
32 Correct 0 ms 2392 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
2 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
3 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
4 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
5 Partially correct 0 ms 2392 KB Partially correct
6 Runtime error 0 ms 2644 KB Execution failed because the return code was nonzero
7 Runtime error 0 ms 2400 KB Execution failed because the return code was nonzero
8 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
9 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
10 Correct 1 ms 2392 KB Output is correct
11 Runtime error 1 ms 2392 KB Execution failed because the return code was nonzero
12 Runtime error 1 ms 2392 KB Execution failed because the return code was nonzero
13 Runtime error 1 ms 2392 KB Execution failed because the return code was nonzero
14 Runtime error 1 ms 2392 KB Execution failed because the return code was nonzero
15 Partially correct 4 ms 2392 KB Partially correct
16 Runtime error 4 ms 2556 KB Execution failed because the return code was nonzero
17 Runtime error 5 ms 2740 KB Execution failed because the return code was nonzero
18 Runtime error 5 ms 2588 KB Execution failed because the return code was nonzero
19 Runtime error 5 ms 2592 KB Execution failed because the return code was nonzero
20 Correct 5 ms 2796 KB Output is correct
21 Runtime error 21 ms 3532 KB Execution failed because the return code was nonzero
22 Runtime error 15 ms 3620 KB Execution failed because the return code was nonzero
23 Runtime error 15 ms 3624 KB Execution failed because the return code was nonzero
24 Runtime error 15 ms 3784 KB Execution failed because the return code was nonzero
25 Partially correct 288 ms 3620 KB Partially correct
26 Runtime error 15 ms 3628 KB Execution failed because the return code was nonzero
27 Runtime error 15 ms 3620 KB Execution failed because the return code was nonzero
28 Runtime error 15 ms 3612 KB Execution failed because the return code was nonzero
29 Runtime error 15 ms 3628 KB Execution failed because the return code was nonzero
30 Correct 19 ms 3616 KB Output is correct
31 Runtime error 0 ms 2392 KB Execution failed because the return code was nonzero
32 Runtime error 1 ms 2392 KB Execution failed because the return code was nonzero