AOJ0556 Tile

問題文
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0556

対称な形をしているのでまず,左上に移動させる.次に必ず下三角か上三角のどちらかになり,それが分かれば段数で色判定ができる.

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
#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 main() {
  int n, k;
  cin >> n >> k;

  rep(i, k) {
      int a, b;
      cin >> a >> b;

      a--;
      b--;

      if(a > n / 2) {
          a = n - 1 - a;
      }

      if(b > n / 2) {
          b = n - 1 - b;
      }

      // cout << a << " " << b << endl;
      if(a > b) {
          cout << b % 3 + 1 << endl;
      } else {
          cout << a % 3 + 1 << endl;
      }
  }

  return 0;
}
Feb 11th, 2016
aoj