結果

問題 No.1650 Moving Coins
ユーザー erbowlerbowl
提出日時 2022-08-29 22:06:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 206,200 KB
実行使用メモリ 10,756 KB
最終ジャッジ日時 2024-11-06 19:13:06
合計ジャッジ時間 13,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 254 ms
7,376 KB
testcase_04 AC 195 ms
7,504 KB
testcase_05 AC 242 ms
7,504 KB
testcase_06 AC 260 ms
7,604 KB
testcase_07 AC 264 ms
7,328 KB
testcase_08 AC 325 ms
9,168 KB
testcase_09 AC 327 ms
9,020 KB
testcase_10 AC 331 ms
9,232 KB
testcase_11 AC 326 ms
9,124 KB
testcase_12 AC 306 ms
8,464 KB
testcase_13 AC 305 ms
8,628 KB
testcase_14 AC 326 ms
8,896 KB
testcase_15 AC 300 ms
8,228 KB
testcase_16 AC 343 ms
9,276 KB
testcase_17 AC 331 ms
9,452 KB
testcase_18 AC 344 ms
9,844 KB
testcase_19 AC 383 ms
10,500 KB
testcase_20 AC 391 ms
10,628 KB
testcase_21 AC 394 ms
10,632 KB
testcase_22 AC 397 ms
10,504 KB
testcase_23 AC 388 ms
10,756 KB
testcase_24 AC 268 ms
7,376 KB
testcase_25 AC 264 ms
7,372 KB
testcase_26 AC 126 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n;
    std::cin >> n;
    vector<ll> a(n),b(n);
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
    }
    for (int i = 0; i < n; i++) {
        std::cin >> b[i];
    }
    vector<pair<ll,char>> ans;
    for (int i = 0; i < n; i++) {
        while(a[i]>b[i]){
            ans.push_back({i, 'L'});
            a[i]--;
        }
    }
    for (int i = n-1; i >= 0; i--) {
        while(a[i]<b[i]){
            ans.push_back({i, 'R'});
            a[i]++;
        }
    }
    std::cout << ans.size() << std::endl;
    for (auto e : ans) {
        auto [c,d] = e;
        std::cout << c+1<<" "<<d << std::endl;
    }
}
0