QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#69857#5117. Find Maximummagicduck#WA 5ms3236kbC++141.4kb2023-01-02 14:33:052023-01-02 14:33:08

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-01-02 14:33:08]
  • 评测
  • 测评结果:WA
  • 用时:5ms
  • 内存:3236kb
  • [2023-01-02 14:33:05]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
template <typename T> inline void read(T &F) {
    int R = 1; F = 0; char CH = getchar();
    for(; !isdigit(CH); CH = getchar()) if(CH == '-') R = -1;
    for(; isdigit(CH); CH = getchar()) F = F * 10 + CH - 48;
    F *= R;
}
inline void file(string str) {
    freopen((str + ".in").c_str(), "r", stdin);
    freopen((str + ".out").c_str(), "w", stdout);
}
LL pw[50];
int main() {
    //file("");
    pw[0] = 1; int id = -1;
    for(int i = 1; i <= 50; i++) {
        pw[i] = pw[i - 1] * 3;
        if(pw[i] >= (LL)(1e18)) {
            id = i;
            break;
        }
    }
    int n; read(n);
    for(int i = 1; i <= n; i++) {
        LL l, r; read(l), read(r);
        int res = 0, ans = 0, flag = 0;
        for(int j = id; j >= 0; j--) {
            if(!flag)
            if(!((r / pw[j]) % 3)) {
                continue;
            }
            flag = 1;
            if((r / pw[j]) % 3 != (l / pw[j]) % 3) {
                ans = max(ans, int(res + ((r / pw[j]) % 3 - 1) + 1 + 3 * (j - 1)));
                l=r/pw[j]*pw[j];
            }
            res += 1 + (r / pw[j]) % 3;
        }
        ans = max(ans, res);
        cout << ans << '\n';
    }
    #ifdef _MagicDuck
        fprintf(stderr, "# Time: %.3lf s", (double)clock() / CLOCKS_PER_SEC);
    #endif
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3236kb

input:

10
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5

output:

3
3
4
5
3
4
5
4
5
5

result:

ok 10 numbers

Test #2:

score: -100
Wrong Answer
time: 5ms
memory: 3216kb

input:

5050
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61...

output:

2
3
3
4
5
4
5
6
4
5
6
5
6
7
6
7
8
5
6
7
6
7
8
7
8
9
7
7
7
7
7
8
7
8
9
7
7
8
7
8
9
8
9
10
7
8
9
8
9
10
9
10
11
8
8
8
8
8
9
8
9
10
8
8
9
8
9
10
9
10
11
8
9
10
9
10
11
10
11
12
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
11
10
10
3
3
4
5
4
5
6
4
5
6
5
6
7
6
7
8
5
6
7
6
7
8
7
8
9
7
7
7
7
7
8
7
8
...

result:

wrong answer 6th numbers differ - expected: '5', found: '4'