QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#838830#9864. CoinlxllxsWA 0ms3648kbC++201.1kb2025-01-01 01:50:172025-01-01 01:50:18

Judging History

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

  • [2025-01-01 01:50:18]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3648kb
  • [2025-01-01 01:50:17]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;
#define int long long
#define endl '\n'
typedef unsigned long long ull;
typedef long long ll;
const int N = 2e5 + 5, M = 2e5 + 5, LGN = 20, mod = 998244353, B = 131, inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3f, P = 1000000711;
int n, k;

int calc(int x, int ct) {
    int res = x / k * ct, p = x % k;
    if (p) {
        int d = x / k + 1;
        res += (p - 1) / d + 1;
    }
    return x - res;
}

int f(int x) {
    if (x == 1)return 1;
    int pt = (x + k - 1) / k, l = 1, r = (x - 1) / pt;
    while (l < r) {
        int mid = l + r >> 1;
        if ((x - pt * mid + k - 1) / k < pt)r = mid;
        else l = mid + 1;
    }
    int p = f(x - pt * l), ct = l;
    l = 1, r = x;
    while (l < r) {
        int mid = l + r >> 1;
        if (calc(mid, ct) >= p)r = mid;
        else l = mid + 1;
    }
    return l;
}

void lxllxs() {
    cin >> n >> k;
    cout << f(n) << endl;
}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);
    int t = 1;
    cin >> t;
    while (t--)lxllxs();
    return 0;
}

详细

Test #1:

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

input:

4
6 2
8 3
10000 2
1919810 114514

output:

4
8
8192
1919805

result:

ok 4 number(s): "4 8 8192 1919805"

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3492kb

input:

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

output:

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

result:

wrong answer 94th numbers differ - expected: '9', found: '10'