Submission #1022860

# Submission time Handle Problem Language Result Execution time Memory
1022860 2024-07-14T06:43:52 Z vjudge1 Radio Towers (IOI22_towers) C++17
0 / 100
451 ms 1368 KB
#include "towers.h"
#include<bits/stdc++.h>

using namespace std;

#define rall(s) s.rbegin(), s.rend()
#define all(s) s.begin(), s.end()
#define sz(s) (int)s.size()
#define s second 
#define f first 

using ll = long long;
using pii = pair<int, int>; 
using pll = pair<ll, ll>;

vector<int> h;
int n, k = -1;

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

int max_towers(int l, int r, int d) {
    if (k == -1) return 1;
    if (k <= l || r <= k) return 1;
    if (h[k] - h[l] > d || h[k] - h[r] > d) return 1;
    return 2;
}
# Verdict Execution time Memory Grader output
1 Incorrect 255 ms 1112 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 344 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 344 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 451 ms 1368 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 170 ms 688 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 344 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 255 ms 1112 KB 12th lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -