結果

問題 No.1650 Moving Coins
ユーザー polyesterpolyester
提出日時 2021-08-20 23:30:19
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 142,224 KB
実行使用メモリ 9,412 KB
最終ジャッジ日時 2024-10-14 07:19:22
合計ジャッジ時間 13,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,020 KB
testcase_01 AC 4 ms
7,020 KB
testcase_02 AC 3 ms
6,856 KB
testcase_03 AC 257 ms
7,048 KB
testcase_04 AC 195 ms
7,040 KB
testcase_05 AC 243 ms
6,860 KB
testcase_06 AC 269 ms
7,076 KB
testcase_07 AC 268 ms
6,924 KB
testcase_08 AC 333 ms
7,756 KB
testcase_09 AC 336 ms
8,192 KB
testcase_10 AC 340 ms
7,860 KB
testcase_11 AC 341 ms
7,984 KB
testcase_12 AC 320 ms
7,624 KB
testcase_13 AC 320 ms
7,640 KB
testcase_14 AC 334 ms
7,912 KB
testcase_15 AC 304 ms
7,460 KB
testcase_16 AC 351 ms
8,092 KB
testcase_17 AC 332 ms
8,184 KB
testcase_18 AC 363 ms
8,220 KB
testcase_19 AC 396 ms
9,412 KB
testcase_20 AC 397 ms
8,572 KB
testcase_21 AC 395 ms
9,044 KB
testcase_22 AC 401 ms
8,580 KB
testcase_23 AC 400 ms
8,552 KB
testcase_24 AC 277 ms
6,932 KB
testcase_25 AC 273 ms
6,852 KB
testcase_26 AC 125 ms
8,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
using ll = long long;
int main() {
  int n;
  cin >> n;
  vector<int> a(n), b(n);
  for(int i = 0; i < n; i++) {
    cin >> a[i];
  }
  for(int i = 0; i < n; i++) {
    cin >> b[i];
  }

  int ans = 0;
  for(int i = 0; i < n; i++) {
    ans += abs(a[i] - b[i]);
  }
  cout << ans << endl;
  vector<int> c(1000005, -1);
  for(int i = 0; i < n; i++) {
    c[a[i]] = i;
  }
  stack<int> st;
  vector<string> s;
  for(int i = 0; i < n; i++) {
    while(abs(a[i] - b[i]) > 0) {
      if(a[i] < b[i]) {
        if(c[a[i] + 1] == -1) {
          cout << i + 1 << " "
               << "R" << endl;
          c[a[i]] = -1;
          a[i]++;
          c[a[i]] = i;
        } else {
          st.push(i);
          break;
        }
      } else if(a[i] > b[i]) {
        if(c[a[i] - 1] == -1) {
          cout << i + 1 << " "
               << "L" << endl;
          c[a[i]] = -1;
          a[i]--;
          c[a[i]] = i;
        } else {
          st.push(i);
          break;
        }
      }
    }
  }
  while(st.size() > 0) {
    int now = st.top();
    st.pop();
    while(abs(a[now] - b[now]) > 0) {
      if(a[now] < b[now]) {
        cout << now + 1 << " "
             << "R" << endl;
        a[now]++;
      } else {
        cout << now + 1 << " "
             << "L" << endl;
        a[now]--;
      }
    }
  }
  return 0;
}
0