結果
問題 | No.334 門松ゲーム |
ユーザー | tkmst201 |
提出日時 | 2017-04-20 23:21:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,527 bytes |
コンパイル時間 | 3,189 ms |
コンパイル使用メモリ | 163,928 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 21:18:55 |
合計ジャッジ時間 | 4,039 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; } template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; } typedef unsigned long long ull; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef pair<int, pii> P; const ll INF = 1ll<<29; const ll MOD = 1000000007; const double EPS = 1e-10; int dp[1<<12]; int n; int a[12]; inline bool check(int i, int j, int k) { if (a[i] == a[j] || a[j] == a[k] || a[i] == a[k]) return false; int tmp[3] = {a[i], a[j], a[k]}; sort(tmp, tmp + 3); if (a[i] == tmp[1] || a[k] == tmp[1]) return true; return false; } int dfs(int s) { if (~dp[s]) return dp[s]; int res = 0; REP(i, n) if (!(s >> i & 1)) { FOR(j, i + 1, n) if (!(s >> j & 1)) { FOR(k, j + 1, n) if (!(s >> k & 1)) { if (!check(i, j, k)) continue; if (!dfs(s | 1<<i | 1<<j | 1<<k)) res = 1; } } } return dp[s] = res; } int main() { cin >> n; REP(i, n) cin >> a[i]; memset(dp, -1, sizeof(dp)); P ans(INF, pii(0, 0)); REP(i, n) FOR(j, i + 1, n) FOR(k, j + 1, n) { if (!check(i, j, k)) continue; if (!dfs(1<<i | 1<<j | 1<<k)) chmin(ans, P(i, pii(j, k))); } if (ans.first == INF) puts("-1"); else printf("%d %d %d\n", ans.first, ans.second.first, ans.second.second); return 0; }