結果

問題 No.1650 Moving Coins
ユーザー Nzt3Nzt3
提出日時 2022-10-10 02:54:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 206,792 KB
実行使用メモリ 7,044 KB
最終ジャッジ日時 2024-06-23 23:34:50
合計ジャッジ時間 8,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 19 ms
5,480 KB
testcase_04 AC 15 ms
5,480 KB
testcase_05 AC 17 ms
5,608 KB
testcase_06 AC 18 ms
5,484 KB
testcase_07 AC 19 ms
5,480 KB
testcase_08 AC 38 ms
6,304 KB
testcase_09 AC 40 ms
6,268 KB
testcase_10 AC 40 ms
6,340 KB
testcase_11 AC 39 ms
6,228 KB
testcase_12 AC 32 ms
6,084 KB
testcase_13 AC 32 ms
5,980 KB
testcase_14 AC 39 ms
6,360 KB
testcase_15 AC 28 ms
5,856 KB
testcase_16 AC 43 ms
6,560 KB
testcase_17 AC 41 ms
6,452 KB
testcase_18 AC 48 ms
6,460 KB
testcase_19 AC 58 ms
7,044 KB
testcase_20 AC 59 ms
7,044 KB
testcase_21 AC 59 ms
7,040 KB
testcase_22 AC 58 ms
6,984 KB
testcase_23 AC 57 ms
7,044 KB
testcase_24 AC 19 ms
5,476 KB
testcase_25 AC 18 ms
5,376 KB
testcase_26 AC 40 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N),B(N);
  for(int &i:A)cin>>i;
  for(int &i:B)cin>>i;
  vector<pair<int,char>>ans;
  for(int i=0;i<N;i++){
    if(A[i]>B[i]){
      for(int j=0;j<A[i]-B[i];j++)ans.push_back({i+1,'L'});
    }
  }
  for(int i=N-1;i>=0;i--){
    if(A[i]<B[i]){
      for(int j=0;j<B[i]-A[i];j++)ans.push_back({i+1,'R'});
    }
  }
  cout<<ans.size()<<'\n';
  for(auto i:ans)cout<<i.first<<' '<<i.second<<'\n';
}
0