結果

問題 No.1650 Moving Coins
ユーザー t98slidert98slider
提出日時 2021-08-21 02:32:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 172,440 KB
実行使用メモリ 22,772 KB
最終ジャッジ日時 2024-10-14 11:11:16
合計ジャッジ時間 7,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 23 ms
5,452 KB
testcase_04 AC 18 ms
5,584 KB
testcase_05 AC 21 ms
5,456 KB
testcase_06 AC 25 ms
5,456 KB
testcase_07 AC 23 ms
5,580 KB
testcase_08 AC 90 ms
6,408 KB
testcase_09 AC 81 ms
6,296 KB
testcase_10 AC 91 ms
6,444 KB
testcase_11 AC 92 ms
6,476 KB
testcase_12 AC 62 ms
6,112 KB
testcase_13 AC 63 ms
6,124 KB
testcase_14 AC 80 ms
6,228 KB
testcase_15 AC 51 ms
5,832 KB
testcase_16 AC 102 ms
6,532 KB
testcase_17 AC 97 ms
6,428 KB
testcase_18 AC 111 ms
6,604 KB
testcase_19 AC 151 ms
22,772 KB
testcase_20 AC 141 ms
7,020 KB
testcase_21 AC 146 ms
14,828 KB
testcase_22 AC 138 ms
6,892 KB
testcase_23 AC 139 ms
7,016 KB
testcase_24 AC 22 ms
5,460 KB
testcase_25 AC 22 ms
5,452 KB
testcase_26 AC 118 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    cin>>n;
    vector<int> a(n),b(n);
    vector<pair<int,char>> ans;
    for(auto &&v:a)cin>>v;
    for(auto &&v:b)cin>>v;
    function<void(int)> dfs=[&](int i){
        while(b[i]>a[i]){
            if(i+1<n&&a[i]+1==a[i+1])dfs(i+1);
            a[i]++;
            ans.emplace_back(i+1,'R');
        }
        while(a[i]>b[i]){
            a[i]--;
            ans.emplace_back(i+1,'L');
        }
    };
    for(int i=0;i<n;i++)dfs(i);
    cout<<ans.size()<<'\n';
    for(int i=0;i<ans.size();i++)cout<<ans[i].first<<' '<<ans[i].second<<'\n';
}
0