結果
問題 | No.1650 Moving Coins |
ユーザー | 👑 eoeo |
提出日時 | 2021-08-20 23:35:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 3,241 bytes |
コンパイル時間 | 1,959 ms |
コンパイル使用メモリ | 203,276 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-14 07:32:03 |
合計ジャッジ時間 | 9,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | OLE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | OLE | - |
testcase_08 | AC | 43 ms
5,248 KB |
testcase_09 | OLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define endl "\n" #define INCANT cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(12) #ifdef MY_DEBUG #define dbg(...) debug_out(__VA_ARGS__) #define dbgv(v) debug_vector(v) #define dbgvv(vv) debug_vvector(vv) #else #define dbg(...) #define dbgv(v) #define dbgvv(vv) #endif void debug_out(); template <typename Head, typename... Tail> void debug_out(Head H, Tail... T); template <typename Vec> void debug_vector(Vec V); template <typename Vvec> void debug_vvector(Vvec Vv); template <class T> bool chmax(T &, const T &); template <class T> bool chmin(T &, const T &); template <class T> T pwr(T, ll); template <class T> T squ(T); ll fact(ll); ll comb(ll, ll); // const int INF = 1e9 + 7; const ll LINF = (ll)1e18 + 7; const int MOD = 1e9 + 7; const double EPS = 1e-9; int main() { INCANT; ll n; cin >> n; vector<ll> a(n), b(n); for (ll i = 0; i < n; i++) { cin >> a[i]; } for (ll i = 0; i < n; i++) { cin >> b[i]; } ll ans = 0; for (ll i = 0; i < n; i++) { ans += abs(a[i] - b[i]); } cout << ans << endl; for (ll i = 0; i < n; i++) { if (b[i] <= a[i]) { for (ll j = 0; j < a[i] - b[i]; j++) { cout << i + 1 << " " << "L" << endl; } } else { for (ll j = n - 1; j >= i; j--) { if (a[j] < b[j]) { for (ll k = 0; k < b[i] + j - i - a[j]; k++) { cout << j + 1 << " " << "R" << endl; } a[j] = b[i] + j - i; } } } } } /* -----------------------------------MY_FUNCTIONS------------------------------------ */ void debug_out() { cout << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cout << "\033[33m" << H << "\033[m" << " "; debug_out(T...); } template <typename Vec> void debug_vector(Vec V) { cout << endl; for (auto v : V) { cout << "\033[33m" << v << "\033[m" << " "; } cout << endl << endl; } template <typename Vvec> void debug_vvector(Vvec Vv) { cout << endl; for (auto V : Vv) { for (auto v : V) { cout << "\033[33m" << v << "\033[m" << " "; } cout << endl; } cout << endl; } template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } template <class T> T pwr(T x, ll n) { T res = 1; for (int i = 0; i < n; i++) { res *= x; } return res; } template <class T> T squ(T x) { return x * x; } ll fact(ll n) { ll res = 1; for (ll i = 1; i <= n; i++) res *= i; return res; } ll comb(ll n, ll r) { // comb(60, 30)までオーバーフローなし ll res = 1; for (int i = 1; i <= r; i++) { res *= n--; res /= i; } return res; }