티스토리 뷰
https://www.acmicpc.net/problem/10250
문제는 위와 같으며 거리가 짧은 순으로 방을 채우기 때문에 10번째 손님은 402호에 머물게 됩니다.
따라서 N번째 손님 방의 층수와 호수는 각각 아래와 같은 식을 통해 계산할 수 있습니다.
층수 = N % H (But, 건물의 층수와 손님 번호가 같은 경우에는 가장 높은 층수에 머물게 됩니다.)
호수 = (N / H) + 1 (But, 건물의 층수와 손님 번호가 같은 경우에는 + 1 하지 않은 호수에 머물게 됩니다.)
자바 코드는 다음과 같습니다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine());
for (int i = 0; i < t; i++) {
String[] input = br.readLine().split(" ");
int h = Integer.parseInt(input[0]);
int w = Integer.parseInt(input[1]);
int n = Integer.parseInt(input[2]);
int floor = n % h == 0 ? h : n % h;
int roomNum = n % h == 0 ? n / h : (n / h) + 1;
StringBuilder sb = new StringBuilder();
sb.append(floor);
if (roomNum < 10) {
sb.append("0").append(roomNum);
} else {
sb.append(roomNum);
}
System.out.println(sb);
}
}
}
'알고리즘' 카테고리의 다른 글
[백준알고리즘] 2839 - 설탕 배달 (0) | 2021.06.02 |
---|---|
[백준알고리즘] 2775 - 부녀회장이 될테야 (0) | 2021.05.31 |
[백준알고리즘] 2869 - 달팽이는 올라가고 싶다 (0) | 2021.05.26 |
[백준알고리즘] 1193 - 분수찾기 (0) | 2021.05.25 |
[백준알고리즘] 2292 - 벌집 (0) | 2021.05.24 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- sort
- DFS
- spring
- BFS
- SWIFT
- array
- search
- permutation
- programmers
- cloudfront
- CodeCommit
- 수학
- ionic
- Algorithm
- EC2
- AWS
- CodePipeline
- map
- ECR
- Baekjoon
- 에라토스테네스의 체
- java
- 순열
- 프로그래머스
- 소수
- Combination
- string
- CodeDeploy
- 조합
- Dynamic Programming
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함