結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | はまやんはまやん |
提出日時 | 2020-01-14 23:52:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 2,044 bytes |
コンパイル時間 | 1,780 ms |
コンパイル使用メモリ | 195,600 KB |
最終ジャッジ日時 | 2025-01-08 18:06:23 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,820 KB |
testcase_08 | AC | 7 ms
6,816 KB |
testcase_09 | AC | 8 ms
6,820 KB |
testcase_10 | AC | 9 ms
6,816 KB |
testcase_11 | AC | 9 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h>#define rep(i,a,b) for(int i=a;i<b;i++)#define rrep(i,a,b) for(int i=a;i>=b;i--)#define fore(i,a) for(auto &i:a)#define all(x) (x).begin(),(x).end()//#pragma GCC optimize ("-O3")using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }//---------------------------------------------------------------------------------------------------/*---------------------------------------------------------------------------------------------------∧_∧∧_∧ (´<_` ) Welcome to My Coding Space!( ´_ゝ`) / ⌒i @hamayanhamayan0/ \ | |/ / ̄ ̄ ̄ ̄/ |__(__ニつ/ _/ .| .|____\/____/ (u ⊃---------------------------------------------------------------------------------------------------*/int A[3], C[3];//---------------------------------------------------------------------------------------------------void solve() {rep(i, 0, 3) cin >> A[i];rep(i, 0, 3) cin >> C[i];ll ans = infl;vector<int> ord;rep(i, 0, 3) ord.push_back(i);do {if (ord[1] == 1) continue;int pre = A[ord[0]];ll tot = 0;rep(i, 1, 3) {int nxt = min(A[ord[i]], pre - 1);tot += 1LL * (A[ord[i]] - nxt) * C[ord[i]];pre = nxt;}if (0 < pre) chmin(ans, tot);} while (next_permutation(all(ord)));if (ans == infl) ans = -1;printf("%lld\n", ans);}//---------------------------------------------------------------------------------------------------void _main() {int T; cin >> T;rep(t, 0, T) solve();}