답안 #447497

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
447497 2021-07-26T15:10:46 Z rieyuw Balloons (CEOI11_bal) C++17
100 / 100
264 ms 5828 KB
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <stack>
#include <unordered_set>
#include <set>
#include <map>
#include <unordered_map>
#include <iomanip>
#include <climits>
#include <queue>
#include <array>

using namespace std;

#define f first
#define s second
const int mxN = 1000;
const int INF = 1e9 + 7;
const int mod = 1e9 + 7;
/*Problem: */

void solve() {}

int main()
{
	ios::sync_with_stdio(0), cin.tie(0);
	//freopen("paintbarn.in", "r", stdin);
	//freopen("paintbarn.out", "w", stdout);	
	//int t = 1; cin >> t; while (t--) solve();

	int n; cin >> n;
	vector<int> x(n); vector<long double> dia(n);
	for (int i = 0; i < n; ++i)
		cin >> x[i] >> dia[i];

	stack<pair<int, long double>> stk;
	
	for (int i = 0; i < n; ++i)
	{
		while (!stk.empty())
		{
			long long x1 = stk.top().f;
			long double r1 = stk.top().s;
			dia[i] = min(dia[i], (x1 - x[i]) * (x1 - x[i]) / (4 * r1));
			if (dia[i] >= r1) stk.pop();
			else break;
		}
		stk.push({ x[i], dia[i] });
	}
	for (int i = 0; i < n; ++i)
		cout << fixed << setprecision(3) << dia[i] << "\n";
	
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB 2 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB 505 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 332 KB 2000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 844 KB 20000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 58 ms 1968 KB 50000 numbers
2 Correct 51 ms 1564 KB 49912 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 112 ms 3396 KB 100000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 131 ms 3864 KB 115362 numbers
2 Correct 123 ms 3396 KB 119971 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 171 ms 4836 KB 154271 numbers
2 Correct 202 ms 5396 KB 200000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 264 ms 5828 KB 200000 numbers
2 Correct 202 ms 5464 KB 199945 numbers