Recent Posts
Notice
No Rules Rules
solved.ac (feat. 백준, 18110번) 본문
728x90
반응형
solved.ac
https://www.acmicpc.net/problem/18110
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <vector>
#include <math.h>
#include <algorithm>
using namespace std;
vector<int> arr;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0, cnt;
cin >> N;
if(N == 0)
cout << ans;
else{
for(register int n = 0, v; n < N; ++n)
cin >> v, arr.push_back(v);
cnt = static_cast<int>(round(N * 0.15));
sort(arr.begin(), arr.end());
for(register int i = cnt; i < N - cnt; ++i)
ans += arr[i];
cout << static_cast<int>(round(ans / (N - 2.0 * cnt)));
}
return 0;
}
// *&)*@*
반응형
정렬을 통해 연산하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
스케이트보드 (feat. 백준, 28417번) (0) | 2023.07.31 |
---|---|
인사성 밝은 곰곰이 (feat. 백준, 25192번) (0) | 2023.07.18 |
쉬운 최단거리 (feat. 백준, 14940번) (0) | 2023.06.08 |
도로 (feat. 백준, 9344번) (0) | 2023.06.05 |
핑크 플로이드 (feat. 백준, 6091번) (0) | 2023.05.22 |
Comments