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
- 완전 탐색
- 스프링 시큐리티
- spring cloud
- ZuulFilter
- 게이트웨이
- Gradle
- docker-compose
- 다익스트라
- Zuul
- spring boot
- 메모이제이션
- 이분 탐색
- 달팽이
- 주울
- 구간 트리
- 트리
- 이분 매칭
- 스택
- 도커
- BFS
- 플로이드 와샬
- 구현
- 서비스 디스커버리
- 백트래킹
- 비트마스킹
- 유레카
- Spring Cloud Config
- Java
- Logback
- dp
Archives
- Today
- Total
Hello, Freakin world!
[백준 2869번][Java] 달팽이는 올라가고 싶다 본문
V-A 거리에 대해 자면서 이동한 날을 구해 범위를 좁힌 다음, 이동한 날을 계산합니다.
코드의 주석을 참고하세요.
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
/*
달팽이는 올라가고 싶다
https://www.acmicpc.net/problem/2869
*/
public class Main {
static long a,b,v;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
a = Long.parseLong(st.nextToken());
b = Long.parseLong(st.nextToken());
v = Long.parseLong(st.nextToken());
//범위를 좁힙니다.
long day = (v-a)/(a-b); //자면서 이동한 날
long remainder = (v-a)%(a-b); //남은 거리
long rest = remainder + a; //자면서 이동한 거리를 제외한 나머지 거리
while(true) {
//남은 거리가 A보다 큰 경우 잠.
if(rest > a) {
rest -= (a-b);
day++;
continue;
}
//남은 거리가 A보다 작은 경우 종료.
day++;
break;
}
System.out.println(day);
}
}
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' 카테고리의 다른 글
[백준 2512번][Java] 예산 - 이분 탐색 종결 조건 (0) | 2020.10.06 |
---|---|
[백준 17827번][Java] 달팽이 리스트 - offset이 있는 모드 연산 (0) | 2020.10.06 |
[백준 1959번][Java] 달팽이3 (0) | 2020.10.05 |
[백준 1952번][Java] 달팽이 2 (0) | 2020.10.05 |
[백준 1913번][Java] 달팽이 - 2차원 배열 순회하기 (0) | 2020.10.05 |
Comments