Submission #626876

# Submission time Handle Problem Language Result Execution time Memory
626876 2022-08-11T22:20:34 Z kkkkkkkk Radio Towers (IOI22_towers) C++17
0 / 100
435 ms 1328 KB
#include <bits/stdc++.h>

using namespace std;

vector<int> visini;
int N,k=0;

void init(int n,vector<int> H)
{
    N=n;
    visini=H;
    for (int i=1;i<N;i++)
        if (visini[i]<visini[i-1])
            k=i;
}

int max_towers(int l,int r,int d)
{
    if (k<=l||k>=r)
        return 1;
    if (visini[k]-d>=visini[l]&&visini[k]-d>=visini[r])
        return 2;
    return 1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 435 ms 936 KB 12th lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 398 ms 1328 KB 1st lines differ - on the 1st token, expected: '11903', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 218 ms 556 KB 1st lines differ - on the 1st token, expected: '7197', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 435 ms 936 KB 12th lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -