기술 블로그

소풍(PICNIC) 본문

알고리즘 문제/AlgoSpot

소풍(PICNIC)

parkit 2019. 1. 5. 17:51
728x90
반응형

https://algospot.com/judge/problem/read/PICNIC


요즘 공부하고 있는 책을 참고하면서 코드를 구현하였다.


계속 답이 틀려서, 고민했었는데 now를 전역 변수로 선언해버렸었다.


이렇게 되면, 50번 째 이후에 영향을 주기 때문에 당연히 답은 틀리다.



참고한 책 : [프로그래밍 대회에서 배우는 알고리즘 문제해결전략 1, 157p]




PICNIC.cpp





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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
 
using namespace std;
 
int n = 0, m = 0;
 
bool Friends[11][11= { false, };
 
bool used[11= { false, };
// used[i] = i번째 학생은 짝이 있는가? true or false
 
int bruteforce()
{
    // 남은 학생들 중 가장 빠른 번호의 학생을 찾는다.
    int now = -1;
 
    for (int i = 0; i < n; i++)
    {
        if (!used[i])
        {
            now = i;
            break;
        }
    }
 
    // 기저 사례 : 모든 학생이 짝을 찾았으면, 한 가지 방법을 찾았으니 종료한다.
    if (now == -1return 1;
 
    int ret = 0;
 
    // 이 학생과 짝지을 학생을 결정한다.
    for (int i = now + 1; i < n; i++)
    {
        // Friends[now][i] Friends[i][now] 둘 중 하나만 조건문에 써도 된다.
        if (!used[i] && Friends[now][i] && Friends[i][now])
        {
            // used[now]를 안 해주는 이유는 어차피 28번 째 줄의 조건이 있기 때문이다.
 
            used[now] = used[i] = true;
 
            ret += bruteforce();
 
            used[now] = used[i] = false;
        }
    }
 
    return ret;
}
 
int main(void)
{
    int s = 0, e = 0, T = 0;
 
    scanf("%d"&T);
 
    while (T--)
    {
        memset(used, falsesizeof(used));
        memset(Friends, falsesizeof(Friends));
 
        scanf("%d %d"&n, &m);
 
        for (int i = 0; i < m; i++)
        {
            scanf("%d %d"&s, &e);
 
            Friends[s][e] = true;
            Friends[e][s] = true;
        }
 
        printf("%d\n", bruteforce());
    }
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > AlgoSpot' 카테고리의 다른 글

시계 맞추기(Synchronizing Clocks)  (0) 2019.01.06
JMBook 문제들 링크  (0) 2019.01.06
게임판 덮기(BOARDCOVER)  (0) 2019.01.06
보글 게임(BOGGLE)  (0) 2019.01.04
GALLERY 감시 카메라 설치  (0) 2018.09.09