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 |
Tags
- hash table
- bit manipulation
- Class
- Binary Tree
- Stack
- Math
- dynamic programming
- simulation
- string
- Binary Search
- Number Theory
- Matrix
- database
- 자바
- array
- geometry
- 코딩테스트
- implement
- Method
- sorting
- 구현
- SQL
- Counting
- 코테
- Tree
- 파이썬
- greedy
- java
- Data Structure
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 2252. 줄 세우기 본문
N명의 학생들을 키 순서대로 줄을 세우려고 한다. 각 학생의 키를 직접 재서 정렬하면 간단하겠지만, 마땅한 방법이 없어서 두 학생의 키를 비교하는 방법을 사용하기로 하였다. 그나마도 모든 학생들을 다 비교해 본 것이 아니고, 일부 학생들의 키만을 비교해 보았다.
1. 입력
- 첫째 줄에 N(1 ≤ N ≤ 32,000), M(1 ≤ M ≤ 100,000)이 주어진다. M은 키를 비교한 횟수이다.
- 다음 M개의 줄에는 키를 비교한 두 학생의 번호 A, B가 주어진다. 이는 학생 A가 학생 B의 앞에 서야 한다는 의미이다.
- 학생들의 번호는 1번부터 N번이다.
2. 출력
- 첫째 줄에 학생들을 앞에서부터 줄을 세운 결과를 출력한다. 답이 여러 가지인 경우에는 아무거나 출력한다.
3. 예제
4. 코드
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer token = new StringTokenizer(br.readLine());
int n = Integer.valueOf(token.nextToken()), m = Integer.valueOf(token.nextToken());
List<List<Integer>> comp = new ArrayList<List<Integer>>(); // comp.get(i): i번 학생보다 뒤에 서야 하는 학생들의 번호 리스트
int[] infrontof = new int[n+1]; // infrontof[i]: i번 학생보다 앞에 서야 하는 학생들의 수
int[] result = new int[n+1]; // 줄 세우는 순서를 담는 배열
Queue<Integer> q = new LinkedList<>(); // 정렬에 필요한 큐
for(int i=0 ; i<=n ; i++)
comp.add(new ArrayList<>());
int count = m;
while(count-->0){
token = new StringTokenizer(br.readLine());
int a = Integer.valueOf(token.nextToken()), b = Integer.valueOf(token.nextToken());
comp.get(a).add(b);
infrontof[b]++;
}
for(int i=1 ; i<=n ; i++)
if(infrontof[i]==0) q.add(i);
for(int i=1 ; i<=n ; i++) {
int node = q.remove();
result[i] = node;
for(int j : comp.get(node))
if(--infrontof[j]==0) q.add(j);
}
for(int i=1 ; i<=n ; i++)
bw.write(result[i]+" ");
bw.flush(); bw.close();
}
}
- 49964KB, 576ms
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1758. Minimum Changes To Make Alternating Binary String (0) | 2023.06.19 |
---|---|
[LeetCode/Easy] 1668. Maximum Repeating Substring (0) | 2023.06.19 |
[LeetCode/Easy] 1629. Slowest Key (0) | 2023.06.13 |
[LeetCode/Easy] 1496. Path Crossing (0) | 2023.06.13 |
[LeetCode/Easy] 1399. Count Largest Group (0) | 2023.06.12 |