-
Notifications
You must be signed in to change notification settings - Fork 0
/
B. Getting Zero.cpp
91 lines (78 loc) · 2.53 KB
/
B. Getting Zero.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define mod 1000000007
#define Time cerr << "time taken : " << (float)clock() / CLOCKS_PER_SEC << " secs" << endl;
#define pb push_back
#define mp make_pair
#define ff first
#define ss second
#define vi vector<int>
#define onesbits(x) __builtin_popcountll(x)
#define zerobits(x) __builtin_ctzll(x)
#define sp(x, y) fixed << setprecision(y) << x
#define w(x) int x;cin >> x;while (x--)
#define tk(x) int x;cin >> x;
#define fast ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
#ifndef ONLINE_JUDGE
#define debug(x) cerr<< #x <<" ";_print(x);cerr<<endl;
#else
#define debug(x)
#endif
template <class T> void _print(T t){cerr<<t;}
template <class T, class V> void _print(pair <T, V> p) {cerr << "{"; _print(p.ff); cerr << ","; _print(p.ss); cerr << "}";}
template <class T> void _print(vector <T> v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T> void _print(vector < vector <T> > v){cerr<<"[\n";for(int l=0;l<v.size();l++){{for(int k=0;k<v[l].size();k++)cerr<<v[l][k]<<" ";}cerr<<"\n";}cerr<<"]";}
template <class T, class V> void _print(map <T, V> v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T> void _print(set <T> v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";}
const long long inf=1e18;
const int MOD = 1 << 15;
bool isValid(string s){
int len=s.size();
for(int i=0;i<len/2;i++){
if(s[i]!=s[len-1-i]) return false;
}
return true;
}
int32_t main(){
fast
// #ifndef ONLINE_JUDGE
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
// freopen("error.txt","w",stderr);
// #endif
int t ; cin >> t;
while (t--){
int res = 15 , n , m ;
cin >> n ;
int ans = 0 ;
for (int i = 0 ; i < 16; i ++ ) {
int m = n + i ; ans = i;
// debug(m);
while (m%32768 != 0) {
m*= 2;
m%= 32768;
// debug(m);
ans ++ ;
}
// cout<<endl<<endl;
res = min (ans , res ) ;
}
cout << res << " ";
res = 15 ;
}
// while (t--) {
// int x;
// cin >> x;
// int ans = 15;
// for (int i = 0; i <= 15; ++i) {
// int moves = i, cur = (x + i) % MOD;
// while (cur != 0) cur <<= 1, cur %= MOD, ++moves;
// ans = min(ans, moves);
// }
// cout << ans << " ";
// }
// cout << '\n';
Time
return 0;
}