結果

問題 No.1650 Moving Coins
ユーザー polyesterpolyester
提出日時 2021-08-20 23:20:04
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,471 bytes
コンパイル時間 3,881 ms
コンパイル使用メモリ 143,256 KB
実行使用メモリ 9,560 KB
最終ジャッジ日時 2024-10-14 07:01:43
合計ジャッジ時間 16,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,136 KB
testcase_01 AC 4 ms
7,040 KB
testcase_02 AC 4 ms
7,156 KB
testcase_03 WA -
testcase_04 AC 192 ms
7,064 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 342 ms
8,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 387 ms
9,560 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 398 ms
8,704 KB
testcase_23 AC 392 ms
8,520 KB
testcase_24 AC 271 ms
7,040 KB
testcase_25 AC 259 ms
7,040 KB
testcase_26 AC 122 ms
8,676 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;
          a[i]++;
        } else {
          st.push(i);
          break;
        }
      } else if(a[i] > b[i]) {
        if(c[a[i] - 1] == -1) {
          cout << i + 1 << " "
               << "L" << endl;
          a[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