aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/acwing/1217.cpp
blob: e7295472267bbd1fc03108496937a38cf89217fd (plain)
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
#include <cstring>
#include <iostream>

const int MOD = 1e9 + 7;

int n, m;
bool conflict_matrix[7][7];

long long f[7];
long long temp[7];

int back(int x) {
  switch (x) {
  case 1:
    return 4;
  case 2:
    return 5;
  case 3:
    return 6;
  case 4:
    return 1;
  case 5:
    return 2;
  case 6:
    return 3;
  default:
    return 0;
  }
}

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);

  std::cin >> n >> m;

  for (int i = 0; i < m; i++) {
    int a, b;
    std::cin >> a >> b;
    conflict_matrix[a][b] = true;
    conflict_matrix[b][a] = true;
  }

  for (int i = 1; i <= 6; i++)
    f[i] = 4;

  for (int c = 2; c <= n; c++) {
    for (int up = 1; up <= 6; up++) {
      for (int down = 1; down <= 6; down++) {
        if (!conflict_matrix[back(down)][up]) {
          temp[up] = (temp[up] + f[down] * 4) % MOD;
        }
      }
    }
    std::memcpy(f, temp, sizeof f);
    std::memset(temp, 0, sizeof temp);
  }

  long long result = 0;
  for (int i = 1; i <= 6; i++) {
    result = (result + f[i]) % MOD;
  }

  std::cout << result;

  return 0;
}