답안 #609666

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
609666 2022-07-27T19:02:43 Z AugustinasJucas Gap (APIO16_gap) C++14
0 / 100
28 ms 2012 KB
#include <bits/stdc++.h>
#include "gap.h"

using namespace std;

int n;
set<long long> setas;

void calc(int L, int R) {
    if(L > R) return ;
    long long mn, mx;
    MinMax(L, R, &mn, &mx);
    if(mn == -1) return ;

    long long mid = (L + R) / 2;
    long long MX = mx;
    long long sk = -1;
    MinMax(mid, R, &mn, &mx);
    if(mn == -1) {
        sk = MX;
        calc(L, MX-1);
    }else {
        sk = mn;
        calc(L, sk-1);
        calc(mid+1, mx-1);
        setas.insert(mx);
    }
    setas.insert(sk);



}

long long findGap(int T, int N) {
    n = N;
    long long L = 0, R = 1e18;
    calc(L, R);
    vector<long long> mas;
    for(auto x : setas) mas.push_back(x);

    long long ans = 0;
    for(int i = 0; i < n-1; i++) {
        ans = max(ans, mas[i+1] - mas[i]);
    }
    return ans;
}

# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 336 KB Execution killed with signal 11
2 Runtime error 1 ms 464 KB Execution killed with signal 11
3 Runtime error 1 ms 336 KB Execution killed with signal 11
4 Runtime error 1 ms 336 KB Execution killed with signal 11
5 Runtime error 1 ms 464 KB Execution killed with signal 11
6 Runtime error 1 ms 464 KB Execution killed with signal 11
7 Runtime error 1 ms 464 KB Execution killed with signal 11
8 Runtime error 1 ms 464 KB Execution killed with signal 11
9 Runtime error 1 ms 336 KB Execution killed with signal 11
10 Runtime error 1 ms 464 KB Execution killed with signal 11
11 Runtime error 1 ms 464 KB Execution killed with signal 11
12 Runtime error 1 ms 464 KB Execution killed with signal 11
13 Runtime error 1 ms 464 KB Execution killed with signal 11
14 Runtime error 1 ms 464 KB Execution killed with signal 11
15 Runtime error 1 ms 464 KB Execution killed with signal 11
16 Runtime error 6 ms 796 KB Execution killed with signal 11
17 Runtime error 5 ms 732 KB Execution killed with signal 11
18 Runtime error 5 ms 780 KB Execution killed with signal 11
19 Runtime error 5 ms 748 KB Execution killed with signal 11
20 Runtime error 4 ms 848 KB Execution killed with signal 11
21 Runtime error 19 ms 1968 KB Execution killed with signal 11
22 Runtime error 20 ms 1956 KB Execution killed with signal 11
23 Runtime error 20 ms 1956 KB Execution killed with signal 11
24 Runtime error 19 ms 1956 KB Execution killed with signal 11
25 Runtime error 14 ms 1956 KB Execution killed with signal 11
26 Runtime error 20 ms 1916 KB Execution killed with signal 11
27 Runtime error 28 ms 2012 KB Execution killed with signal 11
28 Runtime error 20 ms 1976 KB Execution killed with signal 11
29 Runtime error 19 ms 1952 KB Execution killed with signal 11
30 Runtime error 12 ms 2000 KB Execution killed with signal 11
31 Runtime error 1 ms 464 KB Execution killed with signal 11
32 Runtime error 1 ms 336 KB Execution killed with signal 11
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 336 KB Execution killed with signal 11
2 Runtime error 1 ms 336 KB Execution killed with signal 11
3 Runtime error 1 ms 336 KB Execution killed with signal 11
4 Runtime error 1 ms 336 KB Execution killed with signal 11
5 Runtime error 1 ms 464 KB Execution killed with signal 11
6 Runtime error 1 ms 464 KB Execution killed with signal 11
7 Runtime error 1 ms 464 KB Execution killed with signal 11
8 Runtime error 1 ms 336 KB Execution killed with signal 11
9 Runtime error 1 ms 336 KB Execution killed with signal 11
10 Runtime error 1 ms 464 KB Execution killed with signal 11
11 Runtime error 1 ms 456 KB Execution killed with signal 11
12 Runtime error 1 ms 464 KB Execution killed with signal 11
13 Runtime error 1 ms 464 KB Execution killed with signal 11
14 Runtime error 1 ms 464 KB Execution killed with signal 11
15 Runtime error 1 ms 372 KB Execution killed with signal 11
16 Runtime error 6 ms 724 KB Execution killed with signal 11
17 Runtime error 6 ms 720 KB Execution killed with signal 11
18 Runtime error 5 ms 740 KB Execution killed with signal 11
19 Runtime error 6 ms 720 KB Execution killed with signal 11
20 Runtime error 4 ms 812 KB Execution killed with signal 11
21 Runtime error 21 ms 1948 KB Execution killed with signal 11
22 Runtime error 19 ms 1952 KB Execution killed with signal 11
23 Runtime error 19 ms 1952 KB Execution killed with signal 11
24 Runtime error 19 ms 1988 KB Execution killed with signal 11
25 Runtime error 15 ms 1972 KB Execution killed with signal 11
26 Runtime error 25 ms 1908 KB Execution killed with signal 11
27 Runtime error 22 ms 1952 KB Execution killed with signal 11
28 Runtime error 20 ms 1920 KB Execution killed with signal 11
29 Runtime error 20 ms 1960 KB Execution killed with signal 11
30 Runtime error 12 ms 1936 KB Execution killed with signal 11
31 Runtime error 1 ms 464 KB Execution killed with signal 11
32 Runtime error 1 ms 464 KB Execution killed with signal 11