結果
問題 | No.1650 Moving Coins |
ユーザー | tenten |
提出日時 | 2021-08-23 14:40:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 545 ms / 2,000 ms |
コード長 | 2,011 bytes |
コンパイル時間 | 4,191 ms |
コンパイル使用メモリ | 78,240 KB |
実行使用メモリ | 55,524 KB |
最終ジャッジ日時 | 2024-11-07 17:02:02 |
合計ジャッジ時間 | 16,075 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,868 KB |
testcase_01 | AC | 48 ms
36,884 KB |
testcase_02 | AC | 48 ms
37,132 KB |
testcase_03 | AC | 144 ms
43,232 KB |
testcase_04 | AC | 122 ms
40,188 KB |
testcase_05 | AC | 126 ms
42,128 KB |
testcase_06 | AC | 147 ms
42,532 KB |
testcase_07 | AC | 144 ms
42,936 KB |
testcase_08 | AC | 371 ms
51,288 KB |
testcase_09 | AC | 393 ms
51,504 KB |
testcase_10 | AC | 398 ms
52,648 KB |
testcase_11 | AC | 384 ms
52,948 KB |
testcase_12 | AC | 321 ms
49,320 KB |
testcase_13 | AC | 339 ms
49,592 KB |
testcase_14 | AC | 385 ms
50,712 KB |
testcase_15 | AC | 322 ms
49,144 KB |
testcase_16 | AC | 389 ms
52,120 KB |
testcase_17 | AC | 428 ms
53,560 KB |
testcase_18 | AC | 428 ms
53,552 KB |
testcase_19 | AC | 465 ms
55,364 KB |
testcase_20 | AC | 441 ms
54,804 KB |
testcase_21 | AC | 473 ms
55,472 KB |
testcase_22 | AC | 419 ms
54,156 KB |
testcase_23 | AC | 545 ms
55,524 KB |
testcase_24 | AC | 136 ms
41,580 KB |
testcase_25 | AC | 124 ms
41,772 KB |
testcase_26 | AC | 324 ms
52,688 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int[] org = new int[n]; for (int i = 0; i < n; i++) { org[i] = sc.nextInt(); } int[] next = new int[n]; int count = 0; for (int i = 0; i < n; i++) { next[i] = sc.nextInt(); count += Math.abs(org[i] - next[i]); } StringBuilder sb = new StringBuilder(); ArrayDeque<Integer> stack = new ArrayDeque<>(); for (int i = 0; i < n; i++) { if (org[i] < next[i] && i < n - 1 && org[i + 1] <= next[i]) { stack.push(i); } else { move(i + 1, org[i], next[i], sb); while (stack.size() > 0) { int idx = stack.pop(); move(idx + 1, org[idx], next[idx], sb); } } } System.out.println(count); System.out.print(sb); } static void move(int stone, int from, int to, StringBuilder sb) { if (from > to) { for (int i = 0; i < from - to; i++) { sb.append(stone).append(" L\n"); } } else { for (int i = 0; i < to - from; i++) { sb.append(stone).append(" R\n"); } } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }