結果

問題 No.1650 Moving Coins
ユーザー ytftytft
提出日時 2021-08-29 09:14:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 5,277 ms
コンパイル使用メモリ 339,672 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 03:34:49
合計ジャッジ時間 16,525 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 259 ms
5,248 KB
testcase_04 AC 193 ms
5,248 KB
testcase_05 AC 228 ms
5,248 KB
testcase_06 AC 265 ms
5,248 KB
testcase_07 AC 260 ms
5,248 KB
testcase_08 AC 325 ms
5,248 KB
testcase_09 AC 333 ms
5,248 KB
testcase_10 AC 344 ms
5,248 KB
testcase_11 AC 345 ms
5,248 KB
testcase_12 AC 306 ms
5,248 KB
testcase_13 AC 308 ms
5,248 KB
testcase_14 AC 328 ms
5,248 KB
testcase_15 AC 290 ms
5,248 KB
testcase_16 AC 338 ms
5,248 KB
testcase_17 AC 329 ms
5,248 KB
testcase_18 AC 359 ms
5,248 KB
testcase_19 AC 382 ms
5,248 KB
testcase_20 AC 396 ms
5,248 KB
testcase_21 AC 394 ms
5,248 KB
testcase_22 AC 388 ms
5,248 KB
testcase_23 AC 395 ms
5,248 KB
testcase_24 AC 267 ms
5,248 KB
testcase_25 AC 265 ms
5,248 KB
testcase_26 AC 126 ms
5,248 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