結果

問題 No.1650 Moving Coins
ユーザー simansiman
提出日時 2021-08-21 03:01:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,557 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 143,256 KB
実行使用メモリ 32,008 KB
最終ジャッジ日時 2024-10-14 11:39:42
合計ジャッジ時間 15,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,136 KB
testcase_01 AC 7 ms
11,008 KB
testcase_02 AC 7 ms
11,008 KB
testcase_03 AC 247 ms
13,388 KB
testcase_04 AC 188 ms
13,260 KB
testcase_05 AC 232 ms
13,268 KB
testcase_06 AC 253 ms
13,388 KB
testcase_07 AC 253 ms
13,392 KB
testcase_08 AC 308 ms
13,264 KB
testcase_09 AC 312 ms
13,324 KB
testcase_10 AC 328 ms
13,264 KB
testcase_11 AC 332 ms
13,284 KB
testcase_12 AC 293 ms
13,460 KB
testcase_13 AC 294 ms
13,312 KB
testcase_14 AC 309 ms
13,416 KB
testcase_15 AC 283 ms
13,264 KB
testcase_16 AC 340 ms
13,264 KB
testcase_17 AC 305 ms
13,396 KB
testcase_18 AC 345 ms
13,392 KB
testcase_19 AC 398 ms
32,008 KB
testcase_20 AC 388 ms
13,268 KB
testcase_21 AC 388 ms
22,764 KB
testcase_22 AC 377 ms
13,392 KB
testcase_23 AC 373 ms
13,388 KB
testcase_24 AC 259 ms
13,264 KB
testcase_25 AC 255 ms
13,396 KB
testcase_26 AC 123 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 1000100;
vector<int> A(MAX_N);
vector<int> B(MAX_N);

struct Command {
  int i;
  char direct;

  Command(int i = -1, char direct = '-') {
    this->i = i;
    this->direct = direct;
  }

  string to_s() {
    return to_string(i + 1) + " " + direct;
  }
};

void dfs(int i, vector<bool> &positions, vector<Command> &commands) {
  while (A[i] != B[i]) {
    int a = A[i];

    if (A[i] < B[i]) {
      if (positions[a + 1]) {
        dfs(i + 1, positions, commands);
      } else {
        commands.push_back(Command(i, 'R'));
        positions[a] = false;
        positions[a + 1] = true;
        A[i] += 1;
      }
    } else {
      if (positions[a - 1]) {
        dfs(i + 1, positions, commands);
      } else {
        commands.push_back(Command(i, 'L'));
        positions[a] = false;
        positions[a - 1] = true;
        A[i] -= 1;
      }
    }
  }
}

int main() {
  int N;
  cin >> N;
  vector<bool> positions(MAX_N, false);

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

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

  vector<Command> commands;

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

  cout << commands.size() << endl;
  for (Command &cmd : commands) {
    cout << cmd.to_s() << endl;
  }

  return 0;
}
0