답안 #159692

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
159692 2019-10-24T01:22:12 Z socho Cipele (COCI18_cipele) C++14
18 / 90
189 ms 1912 KB
#include "bits/stdc++.h"
using namespace std;
 
long long n, m;
const long long MXN = 100005;

long long a1[MXN], a2[MXN];

bool works(long long x) {
	long long lpt = 0;
	long long rpt = 0;
	for (long long i=0; i<n; i++) {
		long long at = a1[i];
		long long mxr = at + x;
		long long mnr = at - x;
		while (rpt < m && a2[rpt] <= mxr) {
			rpt++;
		}
		while (lpt < m && a2[lpt] < mnr) {
			lpt++;
		}
		if (lpt == rpt) {
			return false;
		}
		lpt++;
	}
	return true;
}

int main() {
	
	cin >> n >> m;
	
	if (n < m) {
		for (long long i=0; i<n; i++) {
			cin >> a1[i];
		}
		for (long long i=0; i<m; i++) {
			cin >> a2[i];
		}
	}
	else {
		for (long long i=0; i<n; i++) {
			cin >> a2[i];
		}
		for (long long i=0; i<m; i++) {
			cin >> a1[i];
		}
		swap(n, m);
	}
	
	sort(a1, a1+n); sort(a2, a2+n);
	
	long long low = 0;
	long long high = INT_MAX;
	
	while (low + 1 < high) {
		long long mid = (low + high) / 2;
		bool res = works(mid);
		if (res) {
			high = mid;
		}
		else {
			low = mid;
		}
	}
	
	if (works(low)) {
		cout << low << endl;
	}
	else {
		cout << high << endl;
	}
	
	
	
}
# 결과 실행 시간 메모리 Grader output
1 Correct 137 ms 1912 KB Output is correct
2 Correct 189 ms 1908 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 188 ms 1912 KB Output is correct
2 Correct 186 ms 1912 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 376 KB Output is correct
2 Incorrect 10 ms 376 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 145 ms 1656 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 166 ms 1652 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 143 ms 1552 KB Output isn't correct
2 Halted 0 ms 0 KB -