본문 바로가기

Dev/BAEKJOON 백준

[백준/BOJ] 백준 코딩 알고리즘 2503번/C++

728x90
반응형

백준 코딩 알고리즘 문제 2503

 

백준 코딩 알고리즘 문제 2503번 풀이 - 사용 언어: C++

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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <iostream>
 
using namespace std;
 
int board[1000= { 0, };
 
int check(int guess, int clue, int strike, int ball) {
    int g1 = guess / 100, g2 = (guess % 100/ 10, g3 = (guess % 100) % 10;
    int c1 = clue / 100, c2 = (clue % 100/ 10, c3 = (clue % 100) % 10;
 
    int strikeCount = 0;
    int ballCount = 0;
 
    //추측하는 숫자에 0이 들어가 있거나, 서로 겹치는 수가 있으면 0리턴
    if (g1 == 0 || g2 == 0 || g3 == 0 || g1 == g2 || g2 == g3 || g3 == g1)
        return 0;
 
    if (g1 == c1) strikeCount++;
    if (g2 == c2) strikeCount++;
    if (g3 == c3) strikeCount++;
 
    if (g1 == c2 || g1 == c3) ballCount++;
    if (g2 == c1 || g2 == c3) ballCount++;
    if (g3 == c1 || g3 == c2) ballCount++;
 
    //추측 조건에 부합하는 숫자는 1리턴
    if (strike == strikeCount && ball == ballCount)
        return 1;
 
    //조건에 부합하지 않으면 0리턴
    return 0;
 
}
 
int main() {
 
    int N;
    cin >> N;
 
    int clue, strike, ball;
    for (int i = 0; i < N; i++) {
        cin >> clue >> strike >> ball;
        for (int j = 123; j <= 987; j++) {
            if (board[j] == 0) {
                //0인것들을 다시 체크
                board[j] = !check(j, clue, strike, ball);
            }
        }
    }
 
    int guessNum = 0;
    for (int i = 123; i <= 987; i++) {
        if (board[i] == 0)
            guessNum++;
    }
 
    cout << guessNum << endl;
 
    return 0;
 
}
cs
728x90
반응형