結果

問題 No.1650 Moving Coins
ユーザー nebukuro09nebukuro09
提出日時 2021-08-20 21:48:38
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 118,080 KB
実行使用メモリ 51,544 KB
最終ジャッジ日時 2024-06-22 12:07:14
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 58 ms
6,944 KB
testcase_04 AC 42 ms
6,940 KB
testcase_05 AC 53 ms
6,944 KB
testcase_06 AC 58 ms
6,940 KB
testcase_07 AC 59 ms
6,940 KB
testcase_08 AC 92 ms
9,348 KB
testcase_09 AC 106 ms
23,720 KB
testcase_10 AC 95 ms
11,276 KB
testcase_11 AC 103 ms
17,488 KB
testcase_12 AC 84 ms
10,288 KB
testcase_13 AC 86 ms
10,616 KB
testcase_14 AC 97 ms
15,152 KB
testcase_15 AC 78 ms
8,204 KB
testcase_16 AC 106 ms
16,080 KB
testcase_17 AC 103 ms
16,176 KB
testcase_18 AC 112 ms
17,144 KB
testcase_19 AC 151 ms
51,544 KB
testcase_20 AC 125 ms
20,056 KB
testcase_21 AC 137 ms
35,076 KB
testcase_22 AC 125 ms
20,968 KB
testcase_23 AC 123 ms
19,720 KB
testcase_24 AC 59 ms
6,944 KB
testcase_25 AC 58 ms
6,944 KB
testcase_26 AC 65 ms
20,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int).array;
    auto B = readln.split.map!(to!int).array;

    int ans = N.iota.map!(i => abs(A[i] - B[i])).sum;
    ans.writeln;

    void dfs(int i) {
        if (i == N) return;
        if (A[i] >= B[i]) {
            foreach (_; 0..A[i] - B[i]) writeln(i+1, " L");
            dfs(i + 1);
        } else {
            while (i != N - 1 && A[i] < B[i] && A[i] + 1 < A[i + 1]) {
                A[i] += 1;
                writeln(i + 1, " R");
            }
            if (A[i] == B[i]) dfs(i + 1);
            else {
                dfs(i + 1);
                while (A[i] < B[i]) {
                    writeln(i + 1, " R");
                    A[i] += 1;
                }
            }
        }
    }

    dfs(0);
}
0