結果

問題 No.2426 Select Plus or Minus
ユーザー Manuel1024Manuel1024
提出日時 2023-08-18 21:32:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,110 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 97,144 KB
実行使用メモリ 467,200 KB
最終ジャッジ日時 2024-11-28 05:51:11
合計ジャッジ時間 89,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
231,680 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
207,872 KB
testcase_04 AC 709 ms
114,816 KB
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 101 ms
27,008 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
10,496 KB
testcase_27 AC 2 ms
300,672 KB
testcase_28 AC 3 ms
10,496 KB
testcase_29 AC 39 ms
254,080 KB
testcase_30 AC 94 ms
26,112 KB
testcase_31 AC 312 ms
312,192 KB
testcase_32 AC 1,241 ms
171,520 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 1,221 ms
418,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <queue>
using namespace std;
using ll = long long;
using P = pair<int, int>;

int main(){
    ll n; cin >> n;

    map<ll, int> mem;
    map<ll, ll> pre;
    queue<ll> Q;
    Q.emplace(n);
    mem[n] = 0;
    while(!Q.empty()){
        ll cur = Q.front(); Q.pop();
        if(cur == 1) break;
        if(cur%2 == 0){
            if(mem.count(cur/2) == 1) continue;
            mem[cur/2] = mem[cur]+1;
            pre[cur/2] = cur;
            Q.emplace(cur/2);
        }else{
            for(auto &it: {cur*3+1, cur*3-1}){
                if(mem.count(it) == 1) continue;
                mem[it] = mem[cur]+1;
                pre[it] = cur;
                Q.emplace(it);
            }
        }
    }

    string ans = "";
    ll x = 1;
    while(x != n){
        ll p = pre[x];
        if(x*2 == p) ans += "/";
        else if(p*3+1 == x) ans += "+";
        else ans += "-";
        x = p;
    }
    reverse(ans.begin(), ans.end());
    cout << ans.size() << endl;
    cout << ans << endl;
    return 0;
}
0