# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
605081 | 2022-07-25T12:48:03 Z | krit3379 | Balloons (CEOI11_bal) | C++17 | 141 ms | 5420 KB |
#include<bits/stdc++.h> using namespace std; #pragma GCC optimize("O3,unroll-loops") #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #define N 200005 long double x,r; stack<pair<long double,long double>> st; int main(){ int n,i; scanf("%d",&n); for(i=1;i<=n;i++) for(i=1;i<=n;i++){ scanf("%Lf %Lf",&x,&r); while(!st.empty()){ auto [x1,r1]=st.top(); r=min(r,(x-x1)*(x-x1)/4/r1); if(r>=r1)st.pop(); else break; } st.push({x,r}); printf("%.3Lf\n",r); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | 10 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | 2 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | 505 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 340 KB | 2000 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 15 ms | 596 KB | 20000 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 39 ms | 1692 KB | 50000 numbers |
2 | Correct | 31 ms | 1588 KB | 49912 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 75 ms | 2828 KB | 100000 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 92 ms | 3404 KB | 115362 numbers |
2 | Correct | 80 ms | 3324 KB | 119971 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 116 ms | 4116 KB | 154271 numbers |
2 | Correct | 129 ms | 5420 KB | 200000 numbers |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 139 ms | 4644 KB | 200000 numbers |
2 | Correct | 141 ms | 5376 KB | 199945 numbers |