QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#303774 | #6300. Best Carry Player 2 | gugg | RE | 0ms | 3584kb | C++17 | 1.9kb | 2024-01-12 23:30:23 | 2024-01-12 23:30:24 |
Judging History
answer
#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <map>
#include <set>
#include <cmath>
#include <bitset>
#include <cassert>
#include <numeric>
using namespace std;
typedef long long ll;
typedef __int128 lll;
void print(lll x)
{
if (!x) return;
print(x / 10);
cout << (ll)(x % 10);
}
lll pw[20];
void solve()
{
lll f[20][20][2];
memset(f, 0x3f, sizeof f);
string s;
cin >> s;
reverse(s.begin(), s.end());
int k;
cin >> k;
f[0][0][0] = 0;
int n = s.size();
s = " " + s;
if (k == 0)
{
int cnt = 0;
for (int i = 1; i <= n; i ++)
if (s[i] == '9') cnt ++;
else break;
cout << 1;
while (cnt --) cout << 0;
cout << '\n';
return;
}
int cnt = 0;
for (int i = 1; i <= n; i ++)
if (s[i] == '0') cnt ++;
else break;
for (int i = 1; i <= max(n + cnt, k); i ++)
for (int j = 0; j <= k; j ++)
{
int u;
if (i <= n) u = s[i] - '0';
else u = 0;
if (j)
{
f[i][j][1] = f[i - 1][j - 1][1] + (9 - u) * pw[i - 1];
if (u) f[i][j][1] = min(f[i - 1][j - 1][0] + (10 - u) * pw[i - 1], f[i][j][1]);
}
f[i][j][0] = f[i - 1][j][0];
if (u != 9) f[i][j][0] = min(f[i][j][0], f[i - 1][j][1]);
}
print(min(f[max(n + cnt, k)][k][0], f[max(n + cnt, k)][k][1]));
cout << '\n';
}
int main()
{
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
pw[0] = 1;
for (int i = 1; i < 20; i ++)
pw[i] = pw[i - 1] * 10;
int tt = 1;
cin >> tt;
while (tt --)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3584kb
input:
4 12345678 0 12345678 5 12345678 18 990099 5
output:
1 54322 999999999987654322 9910
result:
ok 4 lines
Test #2:
score: -100
Runtime Error
input:
21 999990000099999 0 999990000099999 1 999990000099999 2 999990000099999 3 999990000099999 4 999990000099999 5 999990000099999 6 999990000099999 7 999990000099999 8 999990000099999 9 999990000099999 10 999990000099999 11 999990000099999 12 999990000099999 13 999990000099999 14 999990000099999 15 999...