結果

問題 No.966 引き算をして門松列(その1)
ユーザー fine
提出日時 2020-01-13 21:23:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 1,808 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 21:45:05
合計ジャッジ時間 2,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t;
    cin >> t;
    for (int lo = 0; lo < t; ++lo) {
        vector<ll> a(3);
        for (int i = 0; i < 3; ++i) {
            cin >> a[i];
        }

        if (a[0] == a[1] && a[1] == a[2]) {
            if (a[1] <= 2) {
                cout << -1 << "\n";
            } else {
                cout << 3 << "\n";
            }
            continue;
        }

        if (a[2] < a[0]) swap(a[0], a[2]);

        ll cnt = 0;
        if (a[0] == a[2]) {
            a[0]--;
            cnt++;
        }
        if (a[0] == 0) {
            cout << -1 << "\n";
            continue;
        }

        if (a[1] == a[0]) {
            if (a[1] <= 1) cout << -1 << "\n";
            else cout << cnt + 1 << "\n";
            continue;
        }

        if (a[2] == a[1]) {
            if (a[2] <= 1) {
                cout << -1 << "\n";
                continue;
            } else {
                a[2]--;
                cnt++;
            }
        }

        if (a[0] == a[2]) {
            a[0]--;
            cnt++;
        }
        if (a[0] == 0) {
            cout << -1 << "\n";
            continue;
        }

        if (a[2] < a[1] || a[0] > a[1]) {
            cout << cnt << "\n";
        } else {
            ll ans = 1e18;
            if (a[0] >= 2) ans = min(ans, cnt + a[1] - a[0] + 1);
            if (a[1] >= 2) {
                ll tmp = cnt + a[2] - a[1] + 1;
                if (a[0] == a[1] - 1) {
                    if (a[0] == 1) tmp = 1e18;
                    else tmp++;
                }
                ans = min(ans, tmp);
            }
            cout << (ans >= 1e18 ? -1 : ans) << "\n";
        }
    }

    return 0;
}
0