結果

問題 No.1650 Moving Coins
ユーザー aut_jul_duraut_jul_dur
提出日時 2021-08-20 21:52:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,254 bytes
コンパイル時間 3,754 ms
コンパイル使用メモリ 229,300 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-10-14 03:24:49
合計ジャッジ時間 14,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 245 ms
5,248 KB
testcase_04 AC 176 ms
5,248 KB
testcase_05 AC 228 ms
5,248 KB
testcase_06 AC 248 ms
5,248 KB
testcase_07 AC 249 ms
5,248 KB
testcase_08 AC 253 ms
5,888 KB
testcase_09 AC 278 ms
5,632 KB
testcase_10 AC 264 ms
5,760 KB
testcase_11 AC 268 ms
5,888 KB
testcase_12 AC 273 ms
5,248 KB
testcase_13 AC 263 ms
5,248 KB
testcase_14 AC 272 ms
5,632 KB
testcase_15 AC 269 ms
5,248 KB
testcase_16 AC 271 ms
6,144 KB
testcase_17 AC 280 ms
6,144 KB
testcase_18 AC 278 ms
6,656 KB
testcase_19 AC 286 ms
7,936 KB
testcase_20 AC 292 ms
7,936 KB
testcase_21 AC 292 ms
7,808 KB
testcase_22 AC 283 ms
7,936 KB
testcase_23 AC 288 ms
7,936 KB
testcase_24 AC 244 ms
5,248 KB
testcase_25 AC 251 ms
5,248 KB
testcase_26 AC 40 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
const long long MOD = 1000000007;
const long long INF = 9*1e18;
using ll = long long;
using mint = modint1000000007;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
long double PI = 3.14159265358979;
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  ll N;
  cin>>N;
  vector<ll> A(N),B(N);
  vector<ll> sa(N);
  rep(i,N){
    cin>>A[i];
  }
  rep(i,N){
    cin>>B[i];
  }
  ll ans = 0;
  rep(i,N){
    ans += abs(A[i]-B[i]);
    sa[i] = B[i]-A[i];
  }
  cout << ans << endl;
  ll owatta = -1;
  rep(i,N){
    if(sa[i] > 0){
      continue;
    }
    else{
      for(int k = A[i];k>B[i];k--){
        cout << i+1 << " L" << endl;
      }
      for(int k = i-1;k>owatta;k--){
        for(int p = A[k];p<B[k];p++){
          cout << k+1 << " R" << endl;
        }
      }
      owatta = i;
    }
  }
  for(int i = N-1;i>owatta;i--){
    for(int k = A[i];k<B[i];k++){
      cout << i+1 << " R" << endl;
    }
  }
  return 0;
}
0