답안 #1079456

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1079456 2024-08-28T14:56:52 Z asdasdqwer 송신탑 (IOI22_towers) C++17
0 / 100
459 ms 1592 KB
#include "towers.h"
#include <bits/stdc++.h>
using namespace std;

int mxPos = -1;
int mx = -1;
vector<int> h;

void init(int N, std::vector<int> H) {
    for (int i=0;i<N;i++) {
        if (H[i] > mx) {
            mx = H[i];
            mxPos = i;
        }
    }

    h = H;
}

int max_towers(int L, int R, int D) {
    if (L >= mxPos || R <= mxPos) return 0;
    if (mx - D < max(h[L], h[R])) return 0;
    return 2;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 234 ms 1112 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 459 ms 1592 KB 1st lines differ - on the 1st token, expected: '11903', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 179 ms 692 KB 1st lines differ - on the 1st token, expected: '7197', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 234 ms 1112 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -