結果

問題 No.2675 KUMA
ユーザー じなぺじなぺ
提出日時 2024-03-18 16:02:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,162 bytes
コンパイル時間 5,864 ms
コンパイル使用メモリ 311,904 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-03-18 16:02:23
合計ジャッジ時間 10,222 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,548 KB
testcase_01 AC 3 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 2 ms
6,548 KB
testcase_05 AC 361 ms
6,548 KB
testcase_06 AC 376 ms
6,548 KB
testcase_07 AC 2 ms
6,548 KB
testcase_08 WA -
testcase_09 AC 141 ms
6,548 KB
testcase_10 AC 256 ms
6,548 KB
testcase_11 AC 268 ms
6,548 KB
testcase_12 AC 22 ms
6,548 KB
testcase_13 AC 2 ms
6,548 KB
testcase_14 AC 3 ms
6,548 KB
testcase_15 AC 2 ms
6,548 KB
testcase_16 AC 96 ms
6,548 KB
testcase_17 AC 2 ms
6,548 KB
testcase_18 AC 2 ms
6,548 KB
testcase_19 AC 2 ms
6,548 KB
testcase_20 AC 2 ms
6,548 KB
testcase_21 AC 2 ms
6,548 KB
testcase_22 AC 2 ms
6,548 KB
testcase_23 AC 2 ms
6,548 KB
testcase_24 AC 2 ms
6,548 KB
testcase_25 AC 2 ms
6,548 KB
testcase_26 AC 2 ms
6,548 KB
testcase_27 AC 2 ms
6,548 KB
testcase_28 AC 2 ms
6,548 KB
testcase_29 AC 2 ms
6,548 KB
testcase_30 AC 2 ms
6,548 KB
testcase_31 AC 3 ms
6,548 KB
testcase_32 AC 3 ms
6,548 KB
testcase_33 AC 3 ms
6,548 KB
testcase_34 AC 3 ms
6,548 KB
testcase_35 AC 4 ms
6,548 KB
testcase_36 AC 10 ms
6,548 KB
testcase_37 AC 7 ms
6,548 KB
testcase_38 AC 15 ms
6,548 KB
testcase_39 AC 19 ms
6,548 KB
testcase_40 AC 13 ms
6,548 KB
testcase_41 AC 39 ms
6,548 KB
testcase_42 AC 42 ms
6,548 KB
testcase_43 AC 33 ms
6,548 KB
testcase_44 AC 34 ms
6,548 KB
testcase_45 AC 81 ms
6,548 KB
testcase_46 AC 73 ms
6,548 KB
testcase_47 AC 76 ms
6,548 KB
testcase_48 AC 239 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint998244353;

//多倍長整数//
//#include <boost/multiprecision/cpp_int.hpp>
//namespace mp = boost::multiprecision;
//using bint = mp::cpp_int;

const int INF = 2e9;
const int MOD = 998244353;
const long long LINF = 5e18;

using ll = long long;
using vi = vector<int>;
using vl = vector<long long>;
using vs = vector<string>;
using vc = vector<char>;
using vb = vector<bool>;
using vvi = vector<vector<int>>;
using vvvi = vector<vector<vector<int>>>;
using vvvvi = vector<vector<vector<vector<int>>>>;
using vvl = vector<vector<long long>>;
using vvvl = vector<vector<vector<long long>>>;
using vvvvl = vector<vector<vector<vector<long long>>>>;
using vvc = vector<vector<char>>;
using vvb = vector<vector<bool>>;
using vvvb = vector<vector<vector<bool>>>;
using vvvvb = vector<vector<vector<vector<bool>>>>;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define dump(x)  cout << #x << " = " << (x) << endl;
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define ALL(obj) (obj).begin(),(obj).end()

int main(){
	int n;
	cin >> n;
	vi x(n),y(n);
	rep(i,n) cin >> x[i] >> y[i];
	vector<int> dp(1<<n,INF);
	int dx[8] = {2,2,1,-1,-2,-2,-1,1};
	int dy[8] = {-1,1,2,2,1,-1,-2,-2};
	dp[0] = 0;
	rep(i,1<<n){
		rep(j,n){
			if(i & (1<<j)) continue;
			rep(k,8){
				bool ok = true;
				rep(l,n){
					if(x[j] + dx[k] == x[l] && y[j] + dy[k] == y[l]) ok = false;
					if(j == l) continue;
					if(i & (1<<l)) continue;
					rep(m,8) if(x[j] + dx[k] + dx[m] == x[l] && y[j] + dy[k] + dy[m] == y[l]) ok = false;
				}
				if(ok){
					dp[i | (1<<j)] = min(dp[i | (1<<j)],dp[i] + 1);
					break;
				}
			}
		}
		for(int j = 0;j < n - 1;j++){
			if(i & (1<<j)) continue;
			for(int k = j + 1;k < n;k++){
				if(i & (1<<k)) continue;
				if(x[j] == x[k] && y[j] + 2 == y[k]){
					int nx = x[j] + 2,ny = y[j] + 1;
					bool ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}

					nx = x[j] - 2;
					ny = y[j] + 1;
					ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}
				}
				if(x[j] + 2 == x[k] && y[j] == y[k]){
					int nx = x[j] + 1,ny = y[j] + 2;
					bool ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}

					nx = x[j] + 1;
					ny = y[j] - 2;
					ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}
				}

				if(x[j] == x[k] && y[j] - 2 == y[k]){
					int nx = x[j] + 2,ny = y[j] - 1;
					bool ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}

					nx = x[j] - 2;
					ny = y[j] - 1;
					ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}
				}

				if(x[j] - 2 == x[k] && y[j] == y[k]){
					int nx = x[j] - 1,ny = y[j] + 2;
					bool ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}

					nx = x[j] - 1;
					ny = y[j] - 2;
					ok = true;
					rep(l,n){
						if(j == l) continue;
						if(k == l) continue;
						if(nx == x[l] && ny == y[l]) ok = false;
						if(i & (1<<l)) continue;
						rep(m,8) if(nx + dx[m] == x[l] && ny + dy[m] == y[l]) ok = false;
					}
					if(ok){
						dp[i | (1<<j) | (1<<k)] = min(dp[i | (1<<j) | (1<<k)],dp[i] + 1);
					}
				}
			}
		}
	}
	if(dp[(1<<n) - 1] == INF) cout << -1 << endl;
	else cout << dp[(1<<n) - 1] << endl;
	return 0;
}
0