結果

問題 No.1650 Moving Coins
ユーザー kappybarkappybar
提出日時 2021-09-23 11:58:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 176,456 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2024-07-05 09:25:42
合計ジャッジ時間 11,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 226 ms
5,456 KB
testcase_04 AC 189 ms
5,456 KB
testcase_05 AC 211 ms
5,456 KB
testcase_06 AC 240 ms
5,456 KB
testcase_07 AC 236 ms
5,452 KB
testcase_08 AC 288 ms
6,432 KB
testcase_09 AC 291 ms
6,416 KB
testcase_10 AC 296 ms
6,472 KB
testcase_11 AC 300 ms
6,468 KB
testcase_12 AC 272 ms
6,084 KB
testcase_13 AC 277 ms
6,104 KB
testcase_14 AC 314 ms
6,440 KB
testcase_15 AC 271 ms
5,868 KB
testcase_16 AC 301 ms
6,652 KB
testcase_17 AC 299 ms
6,696 KB
testcase_18 AC 320 ms
6,848 KB
testcase_19 AC 341 ms
7,020 KB
testcase_20 AC 346 ms
7,024 KB
testcase_21 AC 350 ms
7,028 KB
testcase_22 AC 342 ms
7,768 KB
testcase_23 AC 355 ms
7,848 KB
testcase_24 AC 233 ms
5,580 KB
testcase_25 AC 238 ms
5,588 KB
testcase_26 AC 111 ms
5,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:51:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   51 |     for(auto [i,c]:ans) cout << i+1 << " " << c << endl;
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y))
#define chmax(x,y) x = max((x),(y))
#define popcount(x) __builtin_popcountll(x)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;

int main(){
    int n;
    cin >> n;
    vector<int> a(n),b(n);
    rep(i,n) cin >> a[i];
    rep(i,n) cin >> b[i];

    queue<int> q;
    auto ok = [&](int i) -> bool {
        if (!(0 <= i && i < n)) return false;
        if (a[i] == b[i]) {
            return true;
        } else if (a[i] < b[i]) {
            if (i == n-1 || b[i] < a[i+1]) return true;
        } else if (b[i] < a[i]) {
            if (i == 0 || a[i-1] < b[i]) return true;
        }
        return false;
    };

    rep(i,n){
        if (ok(i)) q.push(i);
    }

    vector<pair<int,char>> ans;
    while(!q.empty()){
        int i = q.front();
        q.pop();
        while(a[i] < b[i]) {ans.emplace_back(i,'R'); ++a[i];}
        while(a[i] > b[i]) {ans.emplace_back(i,'L'); --a[i];}
        if (ok(i-1) && a[i-1] != b[i-1]) q.push(i-1);
        if (ok(i+1) && a[i+1] != b[i+1]) q.push(i+1);
    }

    cout << ans.size() << endl;
    for(auto [i,c]:ans) cout << i+1 << " " << c << endl;


    return 0;
}
0