QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#297523#6300. Best Carry Player 2yokeff#WA 0ms3560kbC++171.5kb2024-01-04 17:52:212024-01-04 17:52:21

Judging History

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

  • [2024-01-04 17:52:21]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3560kb
  • [2024-01-04 17:52:21]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
int dp[40][40][2];
int qun[30];
void solve()
{
	int n,k;
	cin>>n>>k;
	memset(dp,0x3f,sizeof(dp));
	int tot = 0;
	
    while(n%10==0&&n!=0)
    {
    	tot++;
    	n/=10;
    }
    qun[0]= 1;
    for(int i=1;i<19;i++)
    qun[i] = qun[i-1]*10;
	vector<int> res(30);
	int cnt = 0;
	dp[0][0][0] = 0;
	while(n)
    {
        int x=n%10;
        n/=10;
        res[cnt++]=x;
    }
    if(k==0)
    {
        int s=1;
        for(int i=1;i<=19;i++)
        {
            if(res[i]!=9)
            {
                cout<<s;
                while(tot--)
                cout<<0;
                cout<<endl;
                
                return;
            }
            s*=10;
        }
    }
    for(int i=0;i<19;i++)
    {	for(int j=0;j<=k;j++)
    	{
    		int add =1 ;
    		while(res[i+add] == 9)
    			add++;
    		if(res[i] == 0)	
    		dp[i+add][j+add][1] = min(dp[i+add][j+add][1],dp[i][j][1]+(9-res[i])*qun[i]);
    		else
    		dp[i+add][j+add][1] = min({dp[i+add][j+add][1],dp[i][j][1]+(9-res[i])*qun[i],dp[i][j][0]+(10-res[i])*qun[i]});
    		dp[i+1][j][0] = min(dp[i][j][0],dp[i][j][1]);
    		
    	}
    }
    cout<<min(dp[18][k][0],dp[18][k][1]);
    while(tot--)
    cout<<0;
    cout<<endl;
    
}  
signed main (){
	std::ios::sync_with_stdio(false);  
	cin.tie(NULL); 
	cout.tie(NULL);
	int t;
	cin>>t;
	while(t--)
	solve();
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4
12345678 0
12345678 5
12345678 18
990099 5

output:

1
54322
999999999987654322
9910

result:

ok 4 lines

Test #2:

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

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...

output:

10000
10000
1000
100
10
1
900001
9900001
99900001
999900001
10000000001
9999910000
9999901000
9999900100
9999900010
9999900001
9000009999900001
99000009999900001
999000009999900001
99999999999999999900000000000000000
100000000000000000

result:

wrong answer 1st lines differ - expected: '100000', found: '10000'