Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 2961 java
- 1188 음식 평론가
- APPEND_SLASH = FALSE
- java di
- 2661 java
- django 프로젝트 시작
- 18233 비트마스킹
- Problems occurred while performing provisioning operation
- windows 원격 연결 설정
- django 웹 페이지
- 18233 러버덕
- django windows 배포 에러
- 14711 java
- 18233 java
- django httpd error
- django
- 원격 연결 포트 포워딩
- 2643 java
- 2643 색종이 올려 놓기
- 14711 타일 뒤집기
- windows apache wsgi 에러
- 2661 좋은 수열
- django settings.py
- django apache deploy error
- 1188 java
- apache pythonpath
- The requested operation has failed!
- 2961 도영이가 만든 맛있는 음식
- 공유기 원격 설정
- django The requested operation has failed!
Archives
라이브러리는 도서관 아닌가요
백준 (BOJ) 25391 특별상 java greedy 본문
https://www.acmicpc.net/problem/25391
문제의 전제에 대한 설명이 좀... 음...
'일반적으로' 생각했을 때, 본상 수상자 먼저 선정하고 특별상을 정한다는 것을 전제로 하고 있다.
따라서 심판이 준 점수에 따라 본상 수상자를 뽑은 후,
남은 사람들 중에서 주최자가 특별상 수상자를 뽑는다.
이것만 알면 사실 평이한 문제
...혹시 나만 헤맨 건가?
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int[][] arr = new int[n][2];
for(int i=0; i<n; ++i){
st = new StringTokenizer(br.readLine());
arr[i][0] = Integer.parseInt(st.nextToken());
arr[i][1] = Integer.parseInt(st.nextToken());
}
Arrays.sort(arr, (e1, e2) -> {
if(e1[1] == e2[1]) return e2[0] - e1[0];
else return e2[1] - e1[1];
});
long max = 0;
for(int i=0; i<k; ++i){
max += arr[i][0];
}
int[][] remained = new int[n-k][2];
for(int i=0; i<n-k; ++i){
remained[i][0] = arr[i+k][0];
remained[i][1] = arr[i+k][1];
}
Arrays.sort(remained, (e1, e2) ->{
if(e1[0] == e2[0]) return e2[1] - e1[1];
else return e2[0] - e1[0];
});
for(int i=0; i<m; ++i){
max += remained[i][0];
}
System.out.print(max);
}
}
'알고리즘 문제' 카테고리의 다른 글
백준 6068 시간 관리하기 java greedy (0) | 2022.09.08 |
---|---|
백준 (BOJ) 4781 사탕가게 java greedy (0) | 2022.09.08 |
백준 (BOJ) 10710 실크로드 java dp (0) | 2022.08.24 |
백준 (BOJ) 7983 내일 할 거야 java 그리디 (0) | 2022.07.07 |
백준 (BOJ) 12026 BOJ 거리 java dp (0) | 2022.07.06 |
Comments