QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#380384 | #1187. Fast Forwarding | thomas_li# | AC ✓ | 0ms | 3708kb | C++17 | 1.2kb | 2024-04-07 02:38:02 | 2024-04-07 02:38:03 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int ll
#define rep(i,a,b) for(int i = a; i < (b); i++)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#define PB push_back
#define FS first
#define SD second
#define ary(k) array<int,k>
template<class A, class B> void cmx(A& x, B y){ x = max<A>(x,y); }
template<class A, class B> void cmn(A& x, B y){ x = min<A>(x,y); }
typedef pair<int,int> pii;
typedef vector<int> vi;
int pot[60];
signed main(){
cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit);
int n;
cin >> n;
int best = n;
pot[0] = 1;
for (int i = 1; i < 40; i++) {
pot[i] = pot[i-1] * 3;
}
for (int t = 1; t < 40; t++) {
int akt = n, res = 0;
for (int i = 0; i <= t; i++) {
if (i == 0 || i == t) {
akt -= pot[i];
res++;
} else {
akt -= 2*pot[i];
res += 2;
}
}
if (akt < 0)
break;
for (int i = t; i >= 0; i--) {
res += akt/pot[i];
akt %= pot[i];
}
cmn(best, res);
}
cout << best << "\n";
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3560kb
input:
19
output:
5
result:
ok answer is '5'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
13
output:
5
result:
ok answer is '5'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3700kb
input:
123456789098765
output:
85
result:
ok answer is '85'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
51
output:
11
result:
ok answer is '11'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
0
output:
0
result:
ok answer is '0'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
3
output:
3
result:
ok answer is '3'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
4
output:
2
result:
ok answer is '2'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
1125899906842623
output:
99
result:
ok answer is '99'
Test #9:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
1125899906842523
output:
95
result:
ok answer is '95'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
16
output:
4
result:
ok answer is '4'
Test #11:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
17
output:
5
result:
ok answer is '5'
Test #12:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
18
output:
6
result:
ok answer is '6'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
137260754729764
output:
58
result:
ok answer is '58'
Test #14:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
137260754729765
output:
59
result:
ok answer is '59'
Test #15:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
137260754729766
output:
60
result:
ok answer is '60'
Test #16:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
16
output:
4
result:
ok answer is '4'
Test #17:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
118096
output:
20
result:
ok answer is '20'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
484
output:
10
result:
ok answer is '10'
Test #19:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
411782264189296
output:
60
result:
ok answer is '60'
Test #20:
score: 0
Accepted
time: 0ms
memory: 3648kb
input:
1085641823733384
output:
96
result:
ok answer is '96'
Test #21:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
167786964029788
output:
82
result:
ok answer is '82'
Test #22:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
334812692221484
output:
90
result:
ok answer is '90'
Test #23:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
595331521341901
output:
85
result:
ok answer is '85'
Test #24:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
9118177
output:
39
result:
ok answer is '39'
Test #25:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
23074720
output:
44
result:
ok answer is '44'
Test #26:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
33017934
output:
44
result:
ok answer is '44'
Test #27:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
1
output:
1
result:
ok answer is '1'
Test #28:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
2
output:
2
result:
ok answer is '2'