結果
問題 | No.2426 Select Plus or Minus |
ユーザー | k1suxu |
提出日時 | 2023-08-18 23:07:44 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,687 bytes |
コンパイル時間 | 3,178 ms |
コンパイル使用メモリ | 265,992 KB |
実行使用メモリ | 550,560 KB |
最終ジャッジ日時 | 2024-05-06 05:39:36 |
合計ジャッジ時間 | 7,765 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 935 ms
146,432 KB |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
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 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
// #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; }