結果

問題 No.1650 Moving Coins
ユーザー risujirohrisujiroh
提出日時 2021-08-20 22:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 205,328 KB
実行使用メモリ 7,008 KB
最終ジャッジ日時 2024-10-14 04:22:21
合計ジャッジ時間 6,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 17 ms
5,248 KB
testcase_04 AC 13 ms
5,452 KB
testcase_05 AC 16 ms
5,352 KB
testcase_06 AC 18 ms
5,352 KB
testcase_07 AC 18 ms
5,476 KB
testcase_08 AC 39 ms
6,176 KB
testcase_09 AC 37 ms
6,268 KB
testcase_10 AC 40 ms
6,212 KB
testcase_11 AC 40 ms
6,100 KB
testcase_12 AC 31 ms
5,952 KB
testcase_13 AC 31 ms
5,852 KB
testcase_14 AC 37 ms
6,104 KB
testcase_15 AC 28 ms
5,856 KB
testcase_16 AC 41 ms
6,288 KB
testcase_17 AC 43 ms
6,448 KB
testcase_18 AC 46 ms
6,460 KB
testcase_19 AC 56 ms
6,916 KB
testcase_20 AC 59 ms
6,916 KB
testcase_21 AC 57 ms
6,920 KB
testcase_22 AC 57 ms
6,908 KB
testcase_23 AC 56 ms
7,008 KB
testcase_24 AC 17 ms
5,348 KB
testcase_25 AC 17 ms
5,252 KB
testcase_26 AC 40 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int n;
  cin >> n;
  vector<int> a(n), b(n);
  for (auto&& e : a) cin >> e;
  for (auto&& e : b) cin >> e;

  vector<pair<int, char>> ans;

  for (int i = 0; i < n; ++i) {
    if (b[i] < a[i]) {
      for (int _ = a[i] - b[i]; _--;) {
        ans.emplace_back(i, 'L');
      }
    }
  }

  for (int i = n; i--;) {
    if (a[i] < b[i]) {
      for (int _ = b[i] - a[i]; _--;) {
        ans.emplace_back(i, 'R');
      }
    }
  }

  cout << size(ans) << '\n';
  for (auto&& [i, c] : ans) {
    cout << i + 1 << ' ' << c << '\n';
  }
}
0