結果

問題 No.1650 Moving Coins
ユーザー ytftytft
提出日時 2021-08-29 09:14:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 4,796 ms
コンパイル使用メモリ 340,204 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 21:05:17
合計ジャッジ時間 17,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 256 ms
5,376 KB
testcase_04 AC 196 ms
5,376 KB
testcase_05 AC 243 ms
5,376 KB
testcase_06 AC 262 ms
5,376 KB
testcase_07 AC 272 ms
5,376 KB
testcase_08 AC 329 ms
5,376 KB
testcase_09 AC 333 ms
5,376 KB
testcase_10 AC 338 ms
5,376 KB
testcase_11 AC 346 ms
5,376 KB
testcase_12 AC 331 ms
5,376 KB
testcase_13 AC 310 ms
5,376 KB
testcase_14 AC 338 ms
5,376 KB
testcase_15 AC 301 ms
5,376 KB
testcase_16 AC 351 ms
5,376 KB
testcase_17 AC 332 ms
5,376 KB
testcase_18 AC 365 ms
5,376 KB
testcase_19 AC 398 ms
5,376 KB
testcase_20 AC 400 ms
5,376 KB
testcase_21 AC 394 ms
5,376 KB
testcase_22 AC 392 ms
5,376 KB
testcase_23 AC 400 ms
5,376 KB
testcase_24 AC 267 ms
5,376 KB
testcase_25 AC 275 ms
5,376 KB
testcase_26 AC 126 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_int.hpp>
using namespace std;
namespace mp = boost::multiprecision;

int main(){
    int N,M=0;
    cin>>N;
    vector<int> A(N);
    
    for(int i=0;i<N;i++){
        cin>>A[i];
    }
    for(int i=0;i<N;i++){
        int temp;
        cin>>temp;
        A[i]=temp-A[i];
        M+=abs(A[i]);
    }
    vector<int> order(0);
    for(int i=0;i<N;i++){
        if(A[i]<=0){
            order.push_back(i);
        }else{
            int j=i;
            while(j<N && A[j]>0){
                ++j;
            }
            for(int k=j-1;k>=i;--k){
                order.push_back(k);
            }
            i=j-1;
        }
    }
    cout<<M<<endl;
    for(int i=0;i<N;i++){
        for(int j=0;j<abs(A[order[i]]);++j){
            cout<<(order[i]+1)<<' '<<(A[order[i]]<0?'L':'R')<<endl;
        }
    }
}
0