답안 #205178

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
205178 2020-02-28T09:02:44 Z ruler Balloons (CEOI11_bal) C++14
70 / 100
114 ms 6136 KB
// IOI 2021
#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define ends ' '
#define die(x) return cout << x << endl, 0
#define all(v) v.begin(), v.end()
#define sz(x) (int)(x.size())
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) { cerr << ends << H; debug_out(T...); }
#define debug(...) cerr << "{" << #__VA_ARGS__ << "}:", debug_out(__VA_ARGS__)
typedef long long ll;
typedef pair<int, int> pii;
const ll INF = 1e9;
const ll MOD = 1e9 + 7;

////////////////////////////////////////////////////////////////////

const int N = 1e5 + 3;

typedef long double ld;
int X[N];
ld R[N];
stack<int> S;

ld GetRad(int dis, ld r) { return 1LL * dis * dis / r / 4; }

int main() {

	ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);	
	
	int n; cin >> n;
	for (int i = 0; i < n; i++) cin >> X[i] >> R[i];
	for (int i = 0; i < n; i++) {
		while (!S.empty()) {
			int l = S.top();
			ld r = GetRad(X[i] - X[l], R[l]);
			if (r < R[i]) R[i] = r;
			if (R[i] > R[l]) S.pop(); else break;
		}
		S.push(i);
		cout << fixed << setprecision(3) << R[i] << endl;
	}

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 376 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 376 KB 2 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 388 KB 505 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 248 KB 2000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 26 ms 1144 KB 20000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 61 ms 2552 KB 50000 numbers
2 Correct 58 ms 2680 KB 49912 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 114 ms 4732 KB 100000 numbers
# 결과 실행 시간 메모리 Grader output
1 Runtime error 52 ms 6136 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 55 ms 6136 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 51 ms 5880 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -