結果

問題 No.643 Two Operations No.2
ユーザー GrenacheGrenache
提出日時 2018-02-02 22:04:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,895 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 80,512 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-06-10 01:18:12
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,040 KB
testcase_01 AC 114 ms
52,768 KB
testcase_02 AC 176 ms
53,940 KB
testcase_03 AC 117 ms
54,304 KB
testcase_04 AC 116 ms
54,088 KB
testcase_05 AC 131 ms
54,588 KB
testcase_06 AC 119 ms
54,300 KB
testcase_07 AC 119 ms
54,032 KB
testcase_08 AC 115 ms
54,480 KB
testcase_09 AC 115 ms
52,932 KB
testcase_10 AC 122 ms
54,336 KB
testcase_11 AC 111 ms
53,004 KB
testcase_12 AC 116 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder643 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int x = sc.nextInt();
		int y = sc.nextInt();

		Map<Pair, Integer> dp = new HashMap<>();
		dp.put(new Pair(x, y), 0);
		Queue<Pair> q = new ArrayDeque<>();
		q.add(new Pair(x, y));
		while (!q.isEmpty()) {
			Pair e = q.remove();
//			pr.println(e);

			if (e.a == e.b) {
				int ans = dp.get(e);
				if (ans > 100) {
					pr.println(-1);
				} else {
					pr.println(ans);
				}
//				pr.println(dp.get(e));
//				pr.println(e);
				return;
			}

			Pair tmp = new Pair(e.b, e.a);
			if (!dp.containsKey(tmp)) {
				q.add(tmp);
				dp.put(tmp, dp.get(e) + 1);
			}
			tmp = new Pair(e.a + e.b, e.a - e.b);
			if (!dp.containsKey(tmp)) {
				q.add(tmp);
				dp.put(tmp, dp.get(e) + 1);
			}
		}
	}

	private static class Pair implements Comparable<Pair> {
		long a;
		long b;

		Pair(long a, long b) {
			this.a = a;
			this.b = b;
		}

		@Override
		public int compareTo(Pair o) {
			if (a == o.a) {
				return Long.compare(b, o.b);
			}

			return Long.compare(a, o.a);
		}

		@Override
		public int hashCode() {
			return Long.hashCode(a);
		}

		@Override
		public boolean equals(Object obj) {
			return a == ((Pair)obj).a && b == ((Pair)obj).b;
		}

		@Override
		public String toString() {
			// [xxx, xxxx]
			StringBuilder stmp = new StringBuilder(32);
			stmp.append('[');
			stmp.append(a);
			stmp.append(',');
			stmp.append(' ');
			stmp.append(b);
			stmp.append(']');

			return stmp.toString();
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0