πŸ‘©β€πŸ’» SWEA_3499_νΌνŽ™νŠΈμ…”ν”Œ

YOU KNOW I MEANΒ·2021λ…„ 4μ›” 26일
0
post-thumbnail

πŸ’¬ 주어진 λ°μ΄ν„°μ˜ μˆœμ„œμ— 맞게 Queue 에 λ„£κ³  μ°¨λ‘€λŒ€λ‘œ 좜λ ₯ν–ˆμŠ΅λ‹ˆλ‹€.


πŸ’‘ 풀이 방법

  • 데이터λ₯Ό 담을 자료ꡬ쑰λ₯Ό 두 개 λ§Œλ“€μ–΄ μˆœμ„œμ— 맞게 λ‹΄μ•„μ£Όμ—ˆμŠ΅λ‹ˆλ‹€.
  • 짝수일 경우 λ˜‘κ°™μ΄ λ“€μ–΄κ°€μ§€λ§Œ ν™€μˆ˜μΌ κ²½μš°κ°€ λ¬Έμ œμ˜€μŠ΅λ‹ˆλ‹€.
    - ν™€μˆ˜μΌ κ²½μš°μ—λŠ” λ¨Όμ € 좜λ ₯될 μžλ£Œκ΅¬μ‘°μ— ν•œ 개λ₯Ό 더 λ„£μ–΄μ£Όμ—ˆμŠ΅λ‹ˆλ‹€.
  • 좜λ ₯ν•  λ•Œμ—λ„ ν™€μˆ˜μ΄λ©΄ ν•œλ²ˆ 더 좜λ ₯ν•΄μ£Όμ—ˆμŠ΅λ‹ˆλ‹€.

πŸ”₯ μ½”λ“œ

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class SWEA_3499_νΌνŽ™νŠΈμ…”ν”Œ {

	public static void main(String[] args) throws IOException {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		for (int t = 1; t <= T; t++) {
			Queue<String> card = new LinkedList<>();
			Queue<String> card_2 = new LinkedList<>();
			int num = sc.nextInt();
			int cnt = 0;

			for (int i = 0; i < num; i++) {
				if (num % 2 == 0) {
					if (num / 2 > i) {
						card.add(sc.next());
					} else {
						card_2.add(sc.next());
					}
				}
				if (num % 2 == 1) {
					if (num / 2 + 1 > i) {
						card.add(sc.next());
					} else {
						card_2.add(sc.next());
					}
				}
			}
			System.out.print("#" + t);
			while (!card_2.isEmpty() && !card.isEmpty()) {
				System.out.print(" ");
				System.out.print(card.poll());
				System.out.print(" ");
				System.out.print(card_2.poll());
			}
			if (num % 2 == 1) {
				System.out.print(" " + card.poll());
			}
			System.out.println();
		}
	}

}

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보