結果

問題 No.1650 Moving Coins
ユーザー startcppstartcpp
提出日時 2021-08-20 21:44:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 88,028 KB
実行使用メモリ 10,628 KB
最終ジャッジ日時 2024-10-14 03:04:59
合計ジャッジ時間 12,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 253 ms
7,504 KB
testcase_04 AC 188 ms
7,508 KB
testcase_05 AC 235 ms
7,508 KB
testcase_06 AC 258 ms
7,508 KB
testcase_07 AC 260 ms
7,380 KB
testcase_08 AC 317 ms
9,168 KB
testcase_09 AC 326 ms
9,092 KB
testcase_10 AC 329 ms
9,228 KB
testcase_11 AC 334 ms
9,256 KB
testcase_12 AC 308 ms
8,460 KB
testcase_13 AC 309 ms
8,500 KB
testcase_14 AC 318 ms
9,028 KB
testcase_15 AC 288 ms
8,252 KB
testcase_16 AC 332 ms
9,408 KB
testcase_17 AC 328 ms
9,460 KB
testcase_18 AC 346 ms
9,716 KB
testcase_19 AC 390 ms
10,620 KB
testcase_20 AC 375 ms
10,624 KB
testcase_21 AC 385 ms
10,624 KB
testcase_22 AC 376 ms
10,528 KB
testcase_23 AC 378 ms
10,628 KB
testcase_24 AC 259 ms
7,504 KB
testcase_25 AC 259 ms
7,512 KB
testcase_26 AC 119 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <cstdio>
#include <cmath>
#include <cassert>
#include <tuple>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;

int n;
int a[200000];
int b[200000];

signed main() {
	int i, j;
	
	cin >> n;
	rep(i, n) cin >> a[i];
	rep(i, n) cin >> b[i];
	
	typedef pair<int, char> P;
	vector<P> ans;
	
	//まず'L'から処理する
	rep(i, n) {
		if (a[i] <= b[i]) continue;
		rep(j, a[i] - b[i]) {
			ans.push_back(P(i, 'L'));
		}
	}
	
	//次に'R'を処理する
	for (i = n - 1; i >= 0; i--) {
		if (a[i] >= b[i]) continue;
		rep(j, b[i] - a[i]) {
			ans.push_back(P(i, 'R'));
		}
	}
	
	cout << ans.size() << endl;
	rep(i, ans.size()) {
		cout << ans[i].first + 1 << " " << ans[i].second << endl;
	}
	return 0;
}
0