Submission #1070324

# Submission time Handle Problem Language Result Execution time Memory
1070324 2024-08-22T13:13:02 Z c2zi6 Radio Towers (IOI22_towers) C++17
4 / 100
663 ms 1440 KB
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "towers.h"

int mx = -1;
int mxv = -2e9;

int n;
VI h;
void init(int N, VI H) {
    n = N;
    h = H;
    rep(i, n) if (h[i] > mxv) {
        mx = i;
        mxv = h[i];
    }
}

int max_towers(int l, int r, int D) {
    if (l < mx && mx < r) {
        if (max(h[l], h[r]) + D <= mxv) return 2;
        return 1;
    }
    return 1;
}





# Verdict Execution time Memory Grader output
1 Correct 333 ms 932 KB Output is correct
2 Correct 655 ms 1368 KB Output is correct
3 Correct 594 ms 1368 KB Output is correct
4 Correct 663 ms 1368 KB Output is correct
5 Correct 552 ms 1368 KB Output is correct
6 Correct 618 ms 1368 KB Output is correct
7 Correct 619 ms 1440 KB Output is correct
8 Correct 0 ms 344 KB Output is correct
9 Correct 0 ms 344 KB Output is correct
10 Correct 0 ms 344 KB Output is correct
# 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 470 ms 1368 KB 1st lines differ - on the 1st token, expected: '11903', found: '2'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 233 ms 692 KB 1st lines differ - on the 1st token, expected: '7197', found: '2'
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 Correct 333 ms 932 KB Output is correct
2 Correct 655 ms 1368 KB Output is correct
3 Correct 594 ms 1368 KB Output is correct
4 Correct 663 ms 1368 KB Output is correct
5 Correct 552 ms 1368 KB Output is correct
6 Correct 618 ms 1368 KB Output is correct
7 Correct 619 ms 1440 KB Output is correct
8 Correct 0 ms 344 KB Output is correct
9 Correct 0 ms 344 KB Output is correct
10 Correct 0 ms 344 KB Output is correct
11 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
12 Halted 0 ms 0 KB -