답안 #785254

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
785254 2023-07-17T07:39:39 Z ono_de206 송신탑 (IOI22_towers) C++17
0 / 100
388 ms 1360 KB
#include "towers.h"
#include<bits/stdc++.h>
using namespace std;

#define in insert
#define all(x) x.begin(),x.end()
#define pb push_back
#define eb emplace_back
#define ff first
#define ss second

//#define int long long
 
typedef long long ll;
typedef vector<int> vi;
typedef set<int> si;
typedef multiset<int> msi;
typedef pair<int, int> pii;
typedef vector<pii> vpii;

const int mxn = 1e5 + 10;
int h[mxn], n, pos;
void init(int n, std::vector<int> h) {
	::n = n;
	for(int i = 1; i <= n; i++) {
		::h[i] = h[i - 1];
	}
	for(int i = 2; i < n; i++) {
		if(::h[i] > max(::h[i - 1], ::h[i + 1])) ::pos = i;
	}
}

int max_towers(int L, int R, int D) {
	L++;
	R++;
	return (L < pos && R > pos && max(h[L], h[R]) + D <= h[pos]);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 388 ms 976 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 342 ms 1360 KB 1st lines differ - on the 1st token, expected: '11903', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 250 ms 464 KB 1st lines differ - on the 1st token, expected: '7197', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 388 ms 976 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -