結果

問題 No.968 引き算をして門松列(その3)
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-01-13 21:06:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 2,153 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 78,232 KB
実行使用メモリ 48,692 KB
最終ジャッジ日時 2024-06-02 03:56:28
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,444 KB
testcase_01 AC 119 ms
41,356 KB
testcase_02 AC 111 ms
41,696 KB
testcase_03 AC 375 ms
48,428 KB
testcase_04 AC 371 ms
48,260 KB
testcase_05 AC 362 ms
47,876 KB
testcase_06 AC 355 ms
48,240 KB
testcase_07 AC 411 ms
47,092 KB
testcase_08 AC 489 ms
48,216 KB
testcase_09 AC 534 ms
48,560 KB
testcase_10 AC 468 ms
48,692 KB
testcase_11 AC 534 ms
48,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        new Main();
    }
    
    public Main() {
        try (Scanner sc = new Scanner(System.in)) {
            int T = sc.nextInt();
            while((T--) > 0) {
                int A = sc.nextInt(), B = sc.nextInt(), C = sc.nextInt();
                long X = sc.nextInt(), Y = sc.nextInt(), Z = sc.nextInt();
                int a, b, c;
                long INF = 2_000_000_000_000_000_000L;
                long cost = INF;
                // 2つを引くのは1個を足すのに等しいが、構築可能判定が必要
                { // 1. A<C<B
                    a = A;
                    c = Math.max(a + 1, C);
                    b = Math.max(c + 1, B);
                    if (A > (b - B) + (c - C) && B > (a - A) + (c - C) && C > (a - A) + (b - B))
                        cost = Math.min(cost, Y * (a - A) + Z * (b - B) + X * (c - C));
                }
                { // 2. C<A<B
                    c = C;
                    a = Math.max(c + 1, A);
                    b = Math.max(a + 1, B);
                    if (A > (b - B) + (c - C) && B > (a - A) + (c - C) && C > (a - A) + (b - B))
                        cost = Math.min(cost, Y * (a - A) + Z * (b - B) + X * (c - C));
                }
                { // 3. B<A<C
                    b = B;
                    a = Math.max(b + 1, A);
                    c = Math.max(a + 1, C);
                    if (A > (b - B) + (c - C) && B > (a - A) + (c - C) && C > (a - A) + (b - B))
                        cost = Math.min(cost, Y * (a - A) + Z * (b - B) + X * (c - C));
                }
                { // 4. B<C<A
                    b = B;
                    c = Math.max(b + 1, C);
                    a = Math.max(c + 1, A);
                    if (A > (b - B) + (c - C) && B > (a - A) + (c - C) && C > (a - A) + (b - B))
                        cost = Math.min(cost, Y * (a - A) + Z * (b - B) + X * (c - C));
                }
                if (cost == INF) System.out.println(-1);
                else System.out.println(cost);
            }
        }
    }
}
0