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
- 백트래킹
- 유레카
- Logback
- 플로이드 와샬
- 스프링 시큐리티
- 메모이제이션
- 구현
- 비트마스킹
- 도커
- 다익스트라
- 이분 탐색
- 스택
- 서비스 디스커버리
- Gradle
- spring cloud
- 게이트웨이
- 구간 트리
- 완전 탐색
- 주울
- ZuulFilter
- Zuul
- Java
- 트리
- spring boot
- dp
- 이분 매칭
- docker-compose
- 달팽이
- Spring Cloud Config
- BFS
Archives
- Today
- Total
Hello, Freakin world!
[백준 2875번][Java] 대회 or 인턴 - 간단한 방정식 본문
위에서 a값(인턴에 참가하는 남학생 수)를 구할 때, 정수가 아닌 값이 나올 수가 있다. a값은 팀의 수가 최대일 때의 값이므로 이 값에 최대한 가까운 정수값을 써야 한다. 간단하게 이 값을 반올림해주면 된다. (값이 범위를 넘어가는 경우에는 0 또는 k값을 반환하도록 처리해줘야 한다.)
그 다음은 남자, 여자 총원에서 a, k-a를 각각 빼주고 팀을 카운트하면 끝~
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
/*
대회 or 인턴
https://www.acmicpc.net/problem/2875
*/
public class Main {
static int n,m,k;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
k = Integer.parseInt(st.nextToken());
int a = Math.round((2*m + k - n)/3f);
if(a > k) a = k;
if(a < 0) a = 0;
int ret = makeTeam(n-k+a, m-a);
System.out.println(ret);
}
private static int makeTeam(int woman, int man) {
int teamCnt = 0;
while(woman >= 2 && man >= 1) {
woman -= 2;
man--;
teamCnt++;
}
// System.out.println(woman+ " "+man);
return teamCnt;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 1952번][Java] 달팽이 2 (0) | 2020.10.05 |
---|---|
[백준 1913번][Java] 달팽이 - 2차원 배열 순회하기 (0) | 2020.10.05 |
[백준 1525번][Java] 퍼즐 - 그래프 상태 비트마스킹하기 (0) | 2020.10.04 |
[백준 11723번][Java] 집합 - 비트마스크 집합 연산 구현하기 (0) | 2020.10.03 |
[백준 2357번][Java] 최솟값과 최댓값 - 구간 트리, 람다의 성능 (0) | 2020.09.29 |
Comments