結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | ngtkana |
提出日時 | 2020-01-13 21:11:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,563 bytes |
コンパイル時間 | 2,211 ms |
コンパイル使用メモリ | 213,476 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-02 04:05:30 |
合計ジャッジ時間 | 5,408 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 180 ms
6,940 KB |
testcase_04 | AC | 188 ms
6,940 KB |
testcase_05 | AC | 192 ms
6,940 KB |
testcase_06 | AC | 191 ms
6,944 KB |
testcase_07 | AC | 192 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#define DEBUG 0 #include <bits/stdc++.h> #define loop(n) for (lint ngtkana_is_a_genius = 0; ngtkana_is_a_genius < lint(n); ngtkana_is_a_genius++) #define rep(i, begin, end) for (lint i = lint(begin); (i) < lint(end); i++) #define all(v) v.begin(), v.end() #define rand(l, r) std::uniform_int_distribution<>(l, r)(mt) using lint = long long; auto mt = std::mt19937_64(std::random_device{}()); auto cmn = [](auto&& a, auto b){ if (a > b) {a = b; return true;} return false; }; auto cmx = [](auto&& a, auto b){ if (a < b) {a = b; return true;} return false; }; void debug_impl() { std::cerr << std::endl; } template <typename Head, typename... Tail> void debug_impl(Head head, Tail... tail) { std::cerr << " " << head; debug_impl(tail...); } #if DEBUG #define debug(...)\ do {\ std::cerr << std::boolalpha << "[" << #__VA_ARGS__ << "]:";\ debug_impl(__VA_ARGS__);\ std::cerr << std::noboolalpha;\ } while (false) #else #define debug(...) {} #endif template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr> std::istream& operator>> (std::istream& is, Container& v) { for (auto & x : v) { is >> x; } return is; } template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr > std::ostream& operator<< (std::ostream& os, Container const& v) { os << "{"; for (auto it = v.begin(); it != v.end(); it++) {os << (it != v.begin() ? "," : "") << *it;} return os << "}"; } template < template < typename ... > class Tuple, typename... Args, std::size_t ... Inds, std::size_t = std::tuple_size< Tuple < Args ... > >::value > std::istream& tuple_input_impl(std::istream& os, Tuple<Args...>& tuple, std::integer_sequence<std::size_t, Inds...>) { (void)std::initializer_list<int>{((void)(os >> std::get< Inds >(tuple)), 0)...}; return os; } template < template < typename ... > class Tuple, typename... Args, std::size_t = std::tuple_size< Tuple < Args ... > >::value > std::istream& operator>> (std::istream& os, Tuple<Args...>& tuple) { return tuple_input_impl(os, tuple, std::index_sequence_for<Args...>()); } template < template < typename ... > class Tuple, typename... Args, std::size_t ... Inds, std::size_t = std::tuple_size< Tuple < Args ... > >::value > std::ostream& tuple_output_impl(std::ostream& os, const Tuple<Args...>& tuple, std::integer_sequence<std::size_t, Inds...>) { os << "("; (void)std::initializer_list<int>{((void)(os << (Inds > 0 ? "," : "") << std::get< Inds >(tuple)), 0)...}; return os << ")"; } template < template < typename ... > class Tuple, typename... Args, std::size_t = std::tuple_size< Tuple < Args ... > >::value > std::ostream& operator<< (std::ostream& os, const Tuple<Args...>& tuple) { return tuple_output_impl(os, tuple, std::index_sequence_for<Args...>()); } int main() { std::cin.tie(0); std::cin.sync_with_stdio(false); int inf = std::numeric_limits<int>::max(); auto is_kadomatsu = [&] (lint a, lint b, lint c) { if (a <= 0 || b <= 0 || c <= 0) return false; if (a==b||b==c||c==a) return false; if (a > c) std::swap(a, c); return b < a || c < b; }; int sz = 3; int q; std::cin >> q; loop(q) { std::vector<lint> a(sz), b(sz); std::cin>> a >> b; debug(a,b); auto cal = [&] (int code_, auto a, auto b) { std::vector<int> code; rep(i,0,4) { code.emplace_back(code_ % 4); code_ /= 4; } std::reverse(all(code)); lint ans = 0; for (auto p : std::vector<std::pair<int,int>>{{code[0],code[1]},{code[2],code[3]}}) { int x,y; std::tie(x,y) = p; if (x==3 || y==3 || x == y) continue; lint& move = a.at(x); lint& target = a.at(y); if (move < target) continue; ans += (move - target + 1) * b.at(x); move = target - 1; } if (!is_kadomatsu(a.at(0),a.at(1),a.at(2))) { ans = inf; } if (ans!=inf) { // debug(a,b,ans); } return ans; }; lint ans = inf; rep(i,0,256) { cmn(ans, cal(i, a, b)); } if (ans == inf) ans = -1; std::cout << ans << std::endl; } return 0; } /* 何かのすぐ下まで下げるをすればよいです。 下げるものは 2 つまでなので、全探索です。 1 回の操作は、4 bit で encode します。 前半が下げるもの、後半が目標です。 0,1,2 が添字で、3 はスキップです。 */