結果
問題 | No.643 Two Operations No.2 |
ユーザー | uafr_cs |
提出日時 | 2018-02-02 21:59:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 143 ms / 2,000 ms |
コード長 | 1,546 bytes |
コンパイル時間 | 2,094 ms |
コンパイル使用メモリ | 78,356 KB |
実行使用メモリ | 55,892 KB |
最終ジャッジ日時 | 2024-06-10 01:17:44 |
合計ジャッジ時間 | 4,179 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
53,164 KB |
testcase_01 | AC | 130 ms
53,352 KB |
testcase_02 | AC | 131 ms
53,396 KB |
testcase_03 | AC | 131 ms
53,780 KB |
testcase_04 | AC | 130 ms
53,256 KB |
testcase_05 | AC | 138 ms
54,284 KB |
testcase_06 | AC | 130 ms
53,428 KB |
testcase_07 | AC | 139 ms
53,896 KB |
testcase_08 | AC | 130 ms
53,536 KB |
testcase_09 | AC | 143 ms
53,972 KB |
testcase_10 | AC | 139 ms
55,892 KB |
testcase_11 | AC | 130 ms
53,960 KB |
testcase_12 | AC | 137 ms
54,200 KB |
ソースコード
import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { public static int solve(int X, int Y){ if(X == Y){ return 0; }else if(Y == 0){ // (X, 0) -> (X, X) return 1; }else if(X == 0){ // (0, Y) -> (Y, 0) return 1 + solve(Y, 0); }else if(Math.abs(X) != Math.abs(Y)){ return -1; }else{ return solve(X + Y, X - Y); } } public static final int INF = Integer.MAX_VALUE / 2 - 1; public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int X = sc.nextInt(); final int Y = sc.nextInt(); final int OFFSET = 200; final int SIZE = OFFSET + 1 + OFFSET; int[][] DP = new int[SIZE][SIZE]; for(int i = 0; i < SIZE; i++){ for(int j = 0; j < SIZE; j++){ DP[i][j] = (i == j) ? 0 : INF; } } while(true){ boolean update = false; for(int i = 0; i < SIZE; i++){ for(int j = 0; j < SIZE; j++){ if(DP[j][i] > DP[i][j] + 1){ DP[j][i] = DP[i][j] + 1; update = true; } final int y = i - OFFSET; final int x = j - OFFSET; final int nx = x + y; final int ny = x - y; final int ni = ny + OFFSET; final int nj = nx + OFFSET; if(ni >= 0 && ni < SIZE && nj >= 0 && nj < SIZE && DP[i][j] > DP[ni][nj] + 1){ DP[i][j] = DP[ni][nj] + 1; update = true; } } } if(!update){ break; } } //System.out.println(solve(X, Y)); System.out.println(DP[Y + OFFSET][X + OFFSET] == INF ? -1 : DP[Y + OFFSET][X + OFFSET]); } }