結果
問題 | No.2675 KUMA |
ユーザー | 👑 binap |
提出日時 | 2024-03-15 23:23:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,388 bytes |
コンパイル時間 | 4,350 ms |
コンパイル使用メモリ | 278,408 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-30 02:57:31 |
合計ジャッジ時間 | 6,008 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 54 ms
5,248 KB |
testcase_11 | AC | 49 ms
5,248 KB |
testcase_12 | AC | 20 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 85 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; using namespace atcoder; typedef long long ll; typedef vector<int> vi; typedef vector<long long> vl; typedef vector<vector<int>> vvi; typedef vector<vector<long long>> vvl; typedef long double ld; typedef pair<int, int> P; ostream& operator<<(ostream& os, const modint& a) {os << a.val(); return os;} template <int m> ostream& operator<<(ostream& os, const static_modint<m>& a) {os << a.val(); return os;} template <int m> ostream& operator<<(ostream& os, const dynamic_modint<m>& a) {os << a.val(); return os;} template<typename T> istream& operator>>(istream& is, vector<T>& v){int n = v.size(); assert(n > 0); rep(i, n) is >> v[i]; return is;} template<typename U, typename T> ostream& operator<<(ostream& os, const pair<U, T>& p){os << p.first << ' ' << p.second; return os;} template<typename T> ostream& operator<<(ostream& os, const vector<T>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : " "); return os;} template<typename T> ostream& operator<<(ostream& os, const vector<vector<T>>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : ""); return os;} template<typename T> void chmin(T& a, T b){a = min(a, b);} template<typename T> void chmax(T& a, T b){a = max(a, b);} int main(){ int n; cin >> n; vector<int> x(n), y(n); rep(i, n) cin >> x[i] >> y[i]; map<pair<int, int>, vector<vector<int>>> ma; vector<tuple<int, int, int>> v = {{0, 2, 1}, {0, 2, -1}, {1, 1, 2}, {1, -1, 2}, {2, -2, 1}, {2, -2, -1}, {3, 1, -2}, {3, -1, -2}}; rep(i, n){ for(auto [dir, dy, dx] : v){ pair<int, int> p = {y[i] + dy, x[i] + dx}; if(ma.find(p) == ma.end()) ma[p].resize(4); ma[p][dir].push_back(i); } } { vector<pair<int, int>> del; rep(i, n){ pair<int, int> p = {y[i], x[i]}; if(ma.find(p) == ma.end()) continue; del.push_back(p); } for(auto p : del) ma.erase(p); } const int INF = 1001001; vector<int> dp(1 << n, INF); dp[0] = 0; for(auto& [p, vec] : ma){ vector<int> dp_old(1 << n, INF); swap(dp, dp_old); rep(bit, 1 << n){ int bit_new = bit; rep(dir, 4){ for(auto idx : vec[dir]) bit_new |= (1 << idx); chmin(dp[bit_new], dp_old[bit] + 1); chmin(dp[bit], dp_old[bit]); } } } int ans = dp[(1 << n) -1]; if(ans >= INF) cout << "-1\n"; else cout << ans << "\n"; return 0; }