QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#659822#5117. Find MaximumKdlyhWA 2ms3800kbC++202.4kb2024-10-19 22:17:282024-10-19 22:17:30

Judging History

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

  • [2024-10-19 22:17:30]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3800kb
  • [2024-10-19 22:17:28]
  • 提交

answer

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
#include <stack>

#ifdef LOCAL
template <class T, size_t size = std::tuple_size<T>::value> std::string to_debug(T, std::string s = "") requires(not std::ranges::range<T>);
std::string to_debug(auto x) requires requires(std::ostream& os) { os << x; } { return static_cast<std::ostringstream>(std::ostringstream() << x).str(); }
std::string to_debug(std::ranges::range auto x, std::string s = "") requires(not std::is_same_v<decltype(x), std::string>) {
  for (auto xi : x) { s += ", " + to_debug(xi); }
  return "[" + s.substr(s.empty() ? 0 : 2) + "]";
}
template <class T, size_t size> std::string to_debug(T x, std::string s) requires(not std::ranges::range<T>) {
  [&]<size_t... I>(std::index_sequence<I...>) { ((s += ", " + to_debug(get<I>(x))), ...); }(std::make_index_sequence<size>());
  return "(" + s.substr(s.empty() ? 0 : 2) + ")";
}
#define debug(...) std::cerr << __LINE__ << ": (" #__VA_ARGS__ ") = " << to_debug(std::tuple(__VA_ARGS__)) << "\n"
#else
#define debug(x...)
#endif

using i64 = long long;

int n;

int f(i64 x)
{
    int res{};
    if (x == 0) {res = 1;}
    else if (x % 3 == 0) {res = f(x / 3) + 1;}
    else {res = f(x - 1) + 1;}
    return res;
}

void solve()
{
#define tests
    i64 l; i64 r; std::cin >> l >> r;
    std::vector<short> digits; auto x{r}; while (x) {digits.push_back(x % 3); x /= 3;} std::ranges::reverse(digits); 
    int n{(int)(std::size(digits))}; int ans{}; for (int i = 0; i < n; i++) {
        i64 now{};
        for (int j = 0; j < i; j++) {now *= 3; now += digits.at(j);}
        for (int j = i; j < n; j++) {now *= 3; now += 2;} 
        if (now >= l and now <= r) {ans = std::max(ans, f(now));}
    }
    ans = std::max({ans, f(l), f(r)});

    std::cout << ans << "\n";
}

signed main()
{
    std::cin.tie(nullptr)->sync_with_stdio(false);
    int _{1};
#ifdef tests
    std::cin >> _;
#endif
    while(_--) {solve();}
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3800kb

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: 2ms
memory: 3608kb

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
5
6
7
6
7
8
7
8
9
6
7
8
7
8
9
8
9
10
7
8
9
8
9
10
9
10
11
6
7
8
7
8
9
8
9
10
7
8
9
8
9
10
9
10
11
8
9
10
9
10
11
10
11
12
6
7
8
7
8
9
8
9
10
7
8
9
8
9
10
9
10
11
8
9
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
5
6
7
6
7
8
7
8
9
6
7
8
7
8
9
8
...

result:

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