結果
問題 | No.643 Two Operations No.2 |
ユーザー | uafr_cs |
提出日時 | 2018-02-02 21:55:07 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,540 bytes |
コンパイル時間 | 1,855 ms |
コンパイル使用メモリ | 77,404 KB |
実行使用メモリ | 55,156 KB |
最終ジャッジ日時 | 2024-06-10 01:17:01 |
合計ジャッジ時間 | 4,252 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
54,296 KB |
testcase_01 | AC | 146 ms
54,280 KB |
testcase_02 | AC | 139 ms
54,032 KB |
testcase_03 | AC | 145 ms
54,356 KB |
testcase_04 | WA | - |
testcase_05 | AC | 144 ms
53,920 KB |
testcase_06 | AC | 136 ms
54,052 KB |
testcase_07 | AC | 124 ms
53,464 KB |
testcase_08 | AC | 120 ms
53,264 KB |
testcase_09 | WA | - |
testcase_10 | AC | 127 ms
53,136 KB |
testcase_11 | WA | - |
testcase_12 | AC | 136 ms
54,236 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[ni][nj] > DP[i][j] + 1){ DP[ni][nj] = DP[i][j] + 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]); } }