๋ฐ์ํ
https://www.acmicpc.net/problem/2164
์ฝ๋
package Silver_IV;
import java.util.*;
public class ์นด๋22_2164 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
Queue<Integer> queue = new LinkedList<Integer>();
int N = scan.nextInt();
for(int i=1; i<=N; i++)
queue.add(i);
while(queue.size() != 1) {
queue.poll();
int num = queue.poll();
queue.add(num);
}
System.out.println(queue.poll());
scan.close();
}
}
ํ์์ ๊ฐ์ฅ ๋จผ์ ์ ์ฅ๋ ๊ฐ์ ์ ๊ฑฐํ๋ poll() ๋ฉ์๋์,
๊ทธ๋ค์์ ๊ฐ์ num์ ์ ์ฅํด์ ๋ฒ๋ฆฌ๊ณ , ๋ง์ง๋ง์ add(), offer() ํด์ฃผ๋ ๋ฉ์๋๋ง ์ด์ฉํ๋ฉด
์ฝ๊ฒ ํด๊ฒฐ ํ ์ ์๋ค.
๋ฐ์ํ
'Algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํ๋ก๊ทธ๋๋จธ์ค[Java] - ํฐ ์ ๋ง๋ค๊ธฐ (0) | 2020.01.22 |
---|---|
ํ๋ก๊ทธ๋๋จธ์ค[Java] - ์ซ์์ ํํ (0) | 2020.01.21 |
[๋ฐฑ์ค] 13458๋ฒ: ์ํ๊ฐ๋ (0) | 2020.01.21 |
[๋ฐฑ์ค] 11651๋ฒ: ์ขํ ์ ๋ ฌํ๊ธฐ2 (0) | 2020.01.20 |
[๋ฐฑ์ค] 10773๋ฒ: ์ ๋ก (0) | 2020.01.20 |
๋๊ธ