※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 25850번 문제인 A Game Called Mind이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/25850 

 

25850번: A Game Called Mind

The first input line contains an integer, p (2 ≤ p ≤ 6), indicating the number of players. Each of the following p input lines provides the cards for one player. Each line starts with an integer, c (1 ≤ c ≤ 9), indicating the number of cards for th

www.acmicpc.net

크기 100의 배열을 만들고, 숫자 i가 적힌 카드를 가지고 있던 사람이 누구였는지를 그 배열에 저장하자.

 

위와 같이 모든 카드를 배열에 저장해뒀다면 카드들을 크기순으로 둘러보면서 해당 카드를 가지고 있던 사람이 존재한다면 그 사람을 출력해주는 것을 반복하는 것으로 문제를 해결할 수 있다.

 

아래는 제출한 소스코드이다.

#include <iostream>
using namespace std;

char arr[100];

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	int P; cin >> P;
	for (int p = 0; p < P; p++) {
		int K; cin >> K;
		while (K--) {
			int x; cin >> x;
			arr[x] = 'A' + p;
		}
	}

	for (int i = 10; i < 100; i++) {
		if (arr[i]) cout << arr[i];
	}
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 25774 // C++] Simplified Calander System  (0) 2022.11.10
[BOJ 25270 // C++] 99 Problems  (0) 2022.11.10
[BOJ 24348 // C++] ИЗРАЗ  (0) 2022.11.09
[BOJ 25786 // C++] Decimal XOR  (0) 2022.11.09
[BOJ 25703 // C++] 포인터 공부  (0) 2022.11.09

+ Recent posts