結果

問題 No.1650 Moving Coins
ユーザー bonKotsubonKotsu
提出日時 2022-07-18 13:22:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 4,434 ms
コンパイル使用メモリ 266,640 KB
実行使用メモリ 7,932 KB
最終ジャッジ日時 2024-06-30 13:04:42
合計ジャッジ時間 11,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 32 ms
6,940 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 30 ms
6,944 KB
testcase_06 AC 33 ms
6,940 KB
testcase_07 AC 33 ms
6,940 KB
testcase_08 AC 99 ms
6,940 KB
testcase_09 AC 98 ms
6,944 KB
testcase_10 AC 103 ms
6,940 KB
testcase_11 AC 113 ms
6,940 KB
testcase_12 AC 71 ms
6,944 KB
testcase_13 AC 72 ms
6,940 KB
testcase_14 AC 91 ms
6,940 KB
testcase_15 AC 61 ms
6,944 KB
testcase_16 AC 110 ms
7,008 KB
testcase_17 AC 106 ms
7,044 KB
testcase_18 AC 122 ms
7,120 KB
testcase_19 AC 153 ms
7,808 KB
testcase_20 AC 157 ms
7,804 KB
testcase_21 AC 161 ms
7,804 KB
testcase_22 AC 157 ms
7,932 KB
testcase_23 AC 159 ms
7,804 KB
testcase_24 AC 33 ms
6,940 KB
testcase_25 AC 33 ms
6,940 KB
testcase_26 AC 122 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };


int main() {
  int n;
  cin >> n;
  vector<int> a(n), b(n), d(n);
  rep(i,n) cin >> a[i];
  rep(i,n) cin >> b[i];
  vector<pair<int, char>> ans;
  rep(i,n) {
    if (a[i] < b[i]) d[i] = 1;
    else if (a[i] > b[i]) d[i] = -1;
  }
  rep(i,n) {
    // left
    if (d[i] == -1) { 
      rep(j,a[i]-b[i]) {
        ans.pb({i+1, 'L'});
      }
    } else if (d[i] == 1) {
      int l = i;
      int r = i;
      while (r+1<n && d[r+1] == 1) {
        r++;
      }
      for (int j = r; j >= l; j--) {
        rep(k,b[j]-a[j]) {
          ans.pb({j+1, 'R'});
        }
      }
      i = r;
    }
  }
  cout << ans.size() << endl;
  for (auto [n, c] : ans) cout << n << " " << c << "\n";  

  
}
0