<5-9> 전체탐색 - 마법의 숫자 (NumberMagicEasy)
PS/Topcoder training2018. 7. 16. 12:50
### 전체탐색 ###
### SRM 484 Div2 Level 1 ###
<소스코드>
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 32 33 | #include <string> using namespace std; class NumberMagicEasy { public: int theNumber(string answer) { int card[4][8] = {{1, 2, 3, 4, 5, 6, 7, 8}, {1, 2, 3, 4, 9, 10, 11, 12}, {1, 2, 5, 6, 9, 10, 13, 14}, {1, 3, 5, 7, 9, 11, 13, 15}}; int cnt=0; int check[17]={0}; for(int i=0; i<4; i++) { if(answer[i] == 'Y') { cnt++; for(int k=0; k<8; k++) check[card[i][k]]++; } else { for(int k=0; k<8; k++) check[card[i][k]]--; } } for(int i=1; i<=16; i++) { if(cnt == check[i]) return i; } return 0; } }; | cs |
>> 정답이 있는 카드들에 대한 교집합 - 정닶이 없는 카드에 대해 차집합
>> 정답 카드의 갯수만큼 카운트된 숫자가 정답이 된다.
'PS > Topcoder training' 카테고리의 다른 글
<5-8> 전체탐색 - 미로 만드는 사람 (MazeMaker) (0) | 2018.07.16 |
---|---|
<8-8> 수학 - 둥근 모양의 국가들 (CirclesCountry) (0) | 2018.07.16 |
<8-4> 그리디 - 배치 시스템 (BatchSystem) (0) | 2018.07.16 |
<8-1> 탐색범위 한정 - 다양한 색상의 상자와 공 (ColorfulBoxesAndBalls) (0) | 2018.07.14 |
<7-5> DP - 악수 (HandShaking) (0) | 2018.07.04 |