結果

問題 No.1650 Moving Coins
ユーザー ぷらぷら
提出日時 2021-12-05 15:40:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 206,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 07:51:19
合計ジャッジ時間 12,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 219 ms
6,940 KB
testcase_04 AC 165 ms
6,944 KB
testcase_05 AC 205 ms
6,940 KB
testcase_06 AC 226 ms
6,940 KB
testcase_07 AC 241 ms
6,940 KB
testcase_08 AC 289 ms
6,940 KB
testcase_09 AC 285 ms
6,940 KB
testcase_10 AC 294 ms
6,940 KB
testcase_11 AC 292 ms
6,944 KB
testcase_12 AC 263 ms
6,940 KB
testcase_13 AC 261 ms
6,948 KB
testcase_14 AC 289 ms
6,940 KB
testcase_15 AC 256 ms
6,940 KB
testcase_16 AC 295 ms
6,944 KB
testcase_17 AC 283 ms
6,944 KB
testcase_18 AC 313 ms
6,940 KB
testcase_19 AC 337 ms
6,940 KB
testcase_20 AC 336 ms
6,944 KB
testcase_21 AC 335 ms
6,940 KB
testcase_22 AC 338 ms
6,944 KB
testcase_23 AC 353 ms
6,940 KB
testcase_24 AC 234 ms
6,940 KB
testcase_25 AC 236 ms
6,944 KB
testcase_26 AC 109 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int>A(N),B(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<int>tmp1,tmp2;
    long long ans = 0;
    for(int i = 0; i < N; i++) {
        cin >> B[i];
        ans += abs(A[i]-B[i]);
        if(A[i] < B[i]) {
            tmp1.push_back(i);
        }
        else {
            tmp2.push_back(i);
        }
    }
    reverse(tmp1.begin(),tmp1.end());
    cout << ans << endl;
    for(int i = 0; i < tmp1.size(); i++) {
        for(int j = 0; j < abs(A[tmp1[i]]-B[tmp1[i]]); j++) {
            cout << tmp1[i]+1 << " " << 'R' << endl;
        }
    }
    for(int i = 0; i < tmp2.size(); i++) {
        for(int j = 0; j < abs(A[tmp2[i]]-B[tmp2[i]]); j++) {
            cout << tmp2[i]+1 << " " << 'L' << endl;
        }
    }
}
0