AOJ1512 Smartphone Game

Smartphone Game | Aizu Online Judge

Introduction to Programming Introduction to Algorithms and Data Structures Library of Data Structures Library of Graph Algorithms Library of Computational Geometry Library of Dynamic Programming Library of Number Theory

ブロックを任意に1つだけ決めて、最大でn回まで上下左右に移動できる。移動先のブロックは移動元のブロックのあった場所に移動する。つまり、隣接したブロックを交換する事になる。

この部分が理解出来ていなかった.普通に 回まで,隣接しているブロック同士をswapしていて つのブロックだけをswapしていくことが出来ていなかった.
求めるのは回のプレイで得られる最大の点数なので,まずは 回までswapしたブロックの状態をsetに突っ込む.その後,削除,移動で変化が無くなるまで続ける.

Code

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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <algorithm>
#include <sstream>
#include <map>
#include <set>

#define REP(i,k,n) for(int i=k;i<n;i++)
#define rep(i,n) for(int i=0;i<n;i++)
#define INF 1<<30
#define pb push_back
#define mp make_pair

using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int cost[6];
bool used[5][5], flag;
int dx[4] = {1,0,-1,0};
int dy[4] = {0,1,0,-1};

bool can(int y,int x) {
  if(0 <= y && y < 5 && 0 <= x && x < 5) return true;
  return false;
}

ll del(vector<vector<int> > &v, ll bonus) {
  memset(used, 0, sizeof(used));
  rep(i, 5) {
      rep(j, 5) {
          if(v[i][j] == 0) continue;

          int a = i;
          while(a + 1 <= 4 && v[a+1][j] == v[i][j]) {
              a++;
          }

          int b = i;
          while(b - 1 >= 0 && v[b-1][j] == v[i][j]) {
              b--;
          }

          int c = j;
          while(c + 1 <= 4 && v[i][c+1] == v[i][j]) {
              c++;
          }

          int d = j;
          while(d - 1 >= 0 && v[i][d-1] == v[i][j]) {
              d--;
          }

          if(a - b + 1 >= 3 || c - d + 1 >= 3) used[i][j] = true;
      }
  }

  ll ret = 0;
  rep(i, 5) {
      rep(j, 5) {
          if(used[i][j]) {
              ret += bonus * cost[v[i][j]];
              flag = true;
              v[i][j] = 0;
          }
      }
  }

  return ret;
}

void mov(vector<vector<int> > &v) {
  for(int i = 4; i >= 0; i--) {
      rep(j, 5) {
          int y = i;
          while(y + 1 <= 4 && v[y + 1][j] == 0) {
              swap(v[y][j], v[y+1][j]);
              y++;
          }
      }
  }
}

int n;
ll ans = 0;

set<vector<vector<int> > > res;

void dfs(int cnt, int y, int x, vector<vector<int> > v) {
  res.insert(v);

  if(cnt == n) {
      return;
  }

  rep(i, 4) {
      int ny = y + dy[i];
      int nx = x + dx[i];

      if(can(ny, nx)) {
          swap(v[y][x], v[ny][nx]);
          dfs(cnt + 1, ny, nx, v);
          swap(v[y][x], v[ny][nx]);
      }
  }
}

int main() {
  while(cin >> n && n != -1) {
      ans = 0;
      res.clear();

      vector<vector<int> > v(5, vector<int>(5));
      rep(i, 5) rep(j, 5) cin >> v[i][j];
      rep(i, 5) cin >> cost[i+1];

      rep(i, 5) {
          rep(j, 5) {
              dfs(0, i, j, v);
          }
      }

      set<vector<vector<int> > >::iterator ite;
      for(ite = res.begin(); ite != res.end(); ite++) {

          ll bonus = 1, sum = 0;
          vector<vector<int> > t = *ite;

          while(true) {
              flag = false;
              sum += del(t, bonus);

              if(flag) {
                  mov(t);
                  bonus++;

              } else break;
          }

          // cout << "----- : " << sum << endl;
          // rep(i, 5) {
          //     rep(j, 5) {
          //         cout << t[i][j] << " ";
          //     }
          //     cout << endl;
          // }
          ans = max(ans, sum);
      }

      cout << ans << endl;
  }

  return 0;
}
May 10th, 2016