結果
問題 | No.1650 Moving Coins |
ユーザー | soldray |
提出日時 | 2021-08-22 02:38:26 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 5,873 ms |
コンパイル使用メモリ | 124,160 KB |
実行使用メモリ | 273,812 KB |
最終ジャッジ日時 | 2024-10-15 17:39:54 |
合計ジャッジ時間 | 15,519 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 304 ms
6,288 KB |
testcase_09 | TLE | - |
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 <stdio.h> #include <iostream> #include <vector> #include <stack> using namespace std; #define P pair<int, char> int N; vector<int> A, B; vector<P> op; void dfs(int a) { if (A[a] == B[a]) { return; } if (A[a] > B[a]) { for (int i = 0; i < A[a] - B[a]; i++) { op.push_back(make_pair(a, 'L')); } return; } if (a < N - 1) { dfs(a + 1); } for (int i = 0; i < B[a] - A[a]; i++) { op.push_back(make_pair(a, 'R')); } } int main() { cin >> N; A.resize(N, 0); B.resize(N, 0); for (int i = 0; i < N; i++) { cin >> A[i]; } for (int i = 0; i < N; i++) { cin >> B[i]; } for (int i = 0; i < N; i++) { dfs(i); } cout << op.size() << endl; for (int i = 0; i < (int)op.size(); i++) { cout << (op[i].first + 1) << " " << op[i].second << endl; } return 0; }