#define DEBUG 0 #include #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 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::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::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& tuple, std::integer_sequence) { (void)std::initializer_list{((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& tuple) { return tuple_input_impl(os, tuple, std::index_sequence_for()); } 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& tuple, std::integer_sequence) { os << "("; (void)std::initializer_list{((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& tuple) { return tuple_output_impl(os, tuple, std::index_sequence_for()); } int main() { std::cin.tie(0); std::cin.sync_with_stdio(false); lint inf = std::numeric_limits::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; }; lint sz = 3; lint q; std::cin >> q; loop(q) { std::vector a(sz), b(sz); std::cin>> a >> b; debug(a,b); auto cal = [&] (lint code_, auto a, auto b) { std::vector code; rep(i,0,4) { code.emplace_back(code_ % 4); code_ /= 4; } std::reverse(all(code)); lint ans = 0; for (auto p : std::vector>{{code[0],code[1]},{code[2],code[3]}}) { lint 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 はスキップです。 */