結果

問題 No.1650 Moving Coins
ユーザー soldraysoldray
提出日時 2021-08-22 02:42:50
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 5,461 ms
コンパイル使用メモリ 124,544 KB
実行使用メモリ 19,392 KB
最終ジャッジ日時 2024-10-15 17:44:17
合計ジャッジ時間 12,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 227 ms
6,816 KB
testcase_04 AC 171 ms
6,820 KB
testcase_05 AC 226 ms
6,816 KB
testcase_06 AC 252 ms
6,816 KB
testcase_07 AC 235 ms
6,816 KB
testcase_08 AC 296 ms
6,820 KB
testcase_09 AC 298 ms
6,816 KB
testcase_10 AC 305 ms
6,816 KB
testcase_11 AC 311 ms
6,816 KB
testcase_12 AC 285 ms
6,816 KB
testcase_13 AC 275 ms
6,816 KB
testcase_14 AC 309 ms
6,820 KB
testcase_15 AC 263 ms
6,816 KB
testcase_16 AC 313 ms
6,816 KB
testcase_17 AC 312 ms
6,820 KB
testcase_18 AC 328 ms
6,816 KB
testcase_19 AC 359 ms
19,392 KB
testcase_20 AC 411 ms
6,828 KB
testcase_21 AC 368 ms
13,012 KB
testcase_22 AC 365 ms
6,816 KB
testcase_23 AC 363 ms
7,020 KB
testcase_24 AC 262 ms
6,816 KB
testcase_25 AC 256 ms
6,816 KB
testcase_26 AC 112 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <vector>
#include <stack>

using namespace std;

#define P pair<int, char>

int N;
vector<int> A, B;
vector<P> op;

void dfs(int a) {
  if (A[a] >= B[a]) {
    for (int i = 0; i < A[a] - B[a]; i++) {
      op.push_back(make_pair(a, 'L'));
    }

    A[a] = B[a];

    return;
  }

  if (a < N - 1) {
    dfs(a + 1);
  }

  for (int i = 0; i < B[a] - A[a]; i++) {
    op.push_back(make_pair(a, 'R'));
  }

  A[a] = B[a];
}

int main() {
  cin >> N;

  A.resize(N, 0);
  B.resize(N, 0);

  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }

  for (int i = 0; i < N; i++) {
    cin >> B[i];
  }

  for (int i = 0; i < N; i++) {
    dfs(i);
  }

  cout << op.size() << endl;

  for (int i = 0; i < (int)op.size(); i++) {
    cout << (op[i].first + 1) << " " << op[i].second << endl;
  }

  return 0;
}
0