본문 바로가기

알고리즘 관련/BOJ

BOJ)2503 숫자 야구

문제:icpc.me/2503


각 자리의 숫자를 임의로 설정해 준 뒤 매 쿼리를 비교해주는 계산을 하더라도 O(1000*N)의 시간밖에 걸리지 않기 때문에


완전 탐색을 해주어 통과되는 숫자의 수를 출력해주면 된다.


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
#include <cstdio>
#include <algorithm>
using namespace std;
int n, r;
struct query {
    int num, strike, ball;
    query(int num, int strike, int ball) :num(num), strike(strike), ball(ball) {}
    query() {}
    int getfirst() {
        return (num / 100) % 10;
    }
    int getsecond() {
        return (num / 10) % 10;
    }
    int getthird() {
        return num % 10;
    }
}q[101];
int main() {
    scanf("%d"&n);
    for (int i = 0; i < n; i++) {
        int x, y, z;
        scanf("%d%d%d"&x, &y, &z);
        q[i] = query(x, y, z);
    }
    for (int i = 1; i <= 9; i++) {
        for (int j = 0; j <= 9; j++) {
            for (int k = 0; k <= 9; k++) {
                if (i == j || j == k || k == i)continue;
                int f = 0;
                for (int qn = 0; qn <= n; qn++) {
                    int st = 0, ba = 0;
                    if (q[qn].getfirst() == i)st++;
                    if (q[qn].getsecond() == j)st++;
                    if (q[qn].getthird() == k)st++;
                    if (q[qn].getsecond() == i || q[qn].getthird() == i)ba++;
                    if (q[qn].getfirst() == j || q[qn].getthird() == j)ba++;
                    if (q[qn].getfirst() == k || q[qn].getsecond() == k)ba++;
                    if (st != q[qn].strike || ba != q[qn].ball) {
                        f = 1;
                        break;
                    }
                }
                if (!f)r++;
            }
        }
    }
    printf("%d\n", r);
    return 0;
}
cs


'알고리즘 관련 > BOJ' 카테고리의 다른 글

BOJ)10881 프로도의 선물 포장  (0) 2017.06.11
BOJ)11689 GCD(n,k) = 1  (1) 2017.06.10
BOJ)1799 비숍  (0) 2017.06.08
BOJ)7154 Job Postings  (0) 2017.06.08
BOJ)12995 트리나라  (1) 2017.06.08