結果

問題 No.2426 Select Plus or Minus
ユーザー k1suxuk1suxu
提出日時 2023-08-18 23:07:44
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 2,687 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 266,376 KB
実行使用メモリ 1,007,104 KB
最終ジャッジ日時 2024-11-28 09:46:45
合計ジャッジ時間 80,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
472,224 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 MLE -
testcase_04 AC 933 ms
153,380 KB
testcase_05 MLE -
testcase_06 AC 2 ms
13,644 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 AC 134 ms
34,848 KB
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 1 ms
13,636 KB
testcase_27 MLE -
testcase_28 AC 3 ms
13,636 KB
testcase_29 MLE -
testcase_30 AC 120 ms
33,824 KB
testcase_31 MLE -
testcase_32 AC 1,033 ms
170,404 KB
testcase_33 MLE -
testcase_34 AC 1,403 ms
229,024 KB
testcase_35 MLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(n) for(int i = 0; i < (int)n; i++)
#define repi(i,a,b) for(int i = (int)a; i < (int)b; i++)
#define all(x) x.begin(),x.end()
//#define mp make_pair
#define vi vector<int>
#define vvi vector<vi>
#define vvvi vector<vvi>
#define vvvvi vector<vvvi>
#define pii pair<int,int>
#define vpii vector<pair<int,int>>

template<typename T>
void chmax(T &a, const T &b) {a = (a > b? a : b);}
template<typename T>
void chmin(T &a, const T &b) {a = (a < b? a : b);}

using ll = long long;
using ld = long double;
using ull = unsigned long long;

const ll INF = 1e18;
const ld pi = 3.1415926535897932384626433832795028;
const ll mod = 998244353;
int dx[] = {1, 0, -1, 0, -1, -1, 1, 1};
int dy[] = {0, 1, 0, -1, -1, 1, -1, 1};

#define int long long

void solve() {
    int n;
    cin >> n;

    map<int, int> dist, pre;
    map<int, bool> done;
    queue<int> que;
    que.push(n);
    dist[n] = 0;
    done[n] = true;

    while(!que.empty()) {
        int v = que.front();
        que.pop();

        if(v%2==0) {
            if(!done[v/2]) {
                pre[v/2] = v;
                dist[v/2] = dist[v]+1;
                done[v/2] = true;
                que.push(v/2);

                if(v/2 == 1) break;
            }
        }else {
            if(3*v+1 <= INF && !done[3*v+1]) {
                pre[3*v+1] = v;
                dist[3*v+1] = dist[v]+1;
                done[3*v+1] = true;
                que.push(3*v+1);
            }
            if(3*v-1 <= INF && !done[3*v-1]) {
                pre[3*v-1] = v;
                dist[3*v-1] = dist[v]+1;
                done[3*v-1] = true;
                que.push(3*v-1);
            }
        }
    }

    int now = 1;
    string ans;
    while(now != n) {
        int before = pre[now];
        if(before%2==0) ans.push_back('/');
        else if(3*before+1 == now) ans.push_back('+');
        else {
            assert(3*before-1 == now);
            ans.push_back('-');
        }
        now = before;
    }

    reverse(all(ans));
    cout << (int)ans.size() << endl;
    cout << ans << endl;

    // int cur = n;
    // FOR(ans.size()) {
    //     if(ans[i] == '/') {
    //         assert(cur%2==0);
    //         cur /= 2;
    //     }else if(ans[i] == '+') {
    //         cur = 3*cur+1;
    //     }else {
    //         cur = 3*cur-1;
    //     }
    //     assert(cur <= INF);
    // }
    // assert(cur==1);
}

signed main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}
0