QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#812020 | #9864. Coin | q1w2e3r4 | WA | 1ms | 3668kb | C++17 | 1.6kb | 2024-12-13 10:46:21 | 2024-12-13 10:46:22 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
int T,n,k;
int sim(int x){
return x - (x- 1) / k - 1;
}
int cal1(int num){
int add = (num - 1) / (k-1) + 1;
return num + add;
// int t = (num * k) / (k - 1) + 1;
// t --;
// while(sim(t) < num) t ++;
// return t;
}
int cal2(int num){
int add = num / (k - 1) + 1;
return num + add;
// int t = ((num + 1) * k) / (k-1) + 1;
// t ++;
// while(sim(t) > num) t--;
// return t;
}
signed main(){
cin >> T;
while(T--){
cin >> n >> k;
int rt = sqrt(n);
if(k <= rt){
int pos = 1, L = 1, R = 1;
while(R < n){
int add = (pos - 1) / (k-1) + 1;
L = cal1(L);
R = cal2(R);
pos += add;
// cout << L << " " << R << " " << pos << endl;
}
cout << pos << endl;
}
else{
int pos = 1, L = 1, R = 1;
int a1 = 1, a2 = 1, a3 = 1;
int nxt_L = k, nxt_R = k-1, nxt_p = k;
while(R < n){
int rnd1 = (nxt_L - L + a1 - 1) / a1, rnd2 = (nxt_R - R + a2 - 1) / a2, rnd3 = (nxt_p - pos + a3 - 1) / a3;
int rnd = min(rnd1, min(rnd2, rnd3));
L += a1 * rnd;
R += a2 * rnd;
pos += a3 * rnd;
if(L >= nxt_L) a1 ++, nxt_L += k-1;
if(R >= nxt_R) a2 ++, nxt_R = min(n, nxt_R + k-1);
if(pos >= nxt_p) a3 ++, nxt_p += k-1;
}
cout << pos << endl;
}
}
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3668kb
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: 1ms
memory: 3608kb
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 3 4 5 6 7 8 9 10 2 3 3 4 5 6 7 8 9 10 4 3 4 4 5 6 7 8 9 10 4 5 4 5 5 6 7 8 9 10 4 5 6 5 6 6 7 8 9 10 4 5 6 7 6 7 7 8 9 10 8 8 8 7 8 7 8 8 9 10 8 8 8 9 8 9 8 9 9 10 8 8 8 9 10 9 10 9 10 10 8 8 11 9 10 11 10 11 10 11
result:
wrong answer 3rd numbers differ - expected: '2', found: '3'