QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#196060#6135. BookszhoujiuWA 204ms4624kbC++20843b2023-10-01 11:39:122023-10-01 11:39:13

Judging History

This is the latest submission verdict.

  • [2023-10-01 11:39:13]
  • Judged
  • Verdict: WA
  • Time: 204ms
  • Memory: 4624kb
  • [2023-10-01 11:39:12]
  • Submitted

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;

int T,n,m;

void solve()
{
    cin>>n>>m;
    vector<int> a(n+1);
    for(int i=1;i<=n;i++) cin>>a[i];
    
    if(n==m)
    {
        cout<<"Richman\n";
        return ;
    }
    
    int cnt=0;
    for(int i=1;i<=n;i++)
    {
        if(!a[i]) cnt++;
    }
    
    if(cnt>m)
    {
        cout<<"Impossible\n";
        return ;
    }
    
    m-=cnt;
    int res=0;
    for(int i=1;i<=n;i++)
    {
        if(m==0)
        {
            int t=1e18;
            for(int j=i;j<=n;j++) t=min(a[j],t);
            res+=t-1;
            break;
        }
        
        res+=a[i];
        m--;
    }
    
    cout<<res<<endl;
}

signed main()
{
    cin>>T;
    
    while(T--)
        solve();
        
    return 0;
}

詳細信息

Test #1:

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

input:

4
4 2
1 2 4 8
4 0
100 99 98 97
2 2
10000 10000
5 3
0 0 0 0 1

output:

6
96
Richman
Impossible

result:

ok 4 lines

Test #2:

score: -100
Wrong Answer
time: 204ms
memory: 4624kb

input:

10012
1 0
2
3 2
0 1 0
2 1
0 0
100000 99999
1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000...

output:

1
-1
Impossible
99999999999999
192
80
Richman
97
460
Richman
24
163
98
30
15
Richman
Richman
Richman
65
Richman
Richman
450
98
44
349
34
513
28
161
297
Richman
Richman
Richman
147
274
2
160
76
58
91
130
3
Richman
175
32
15
Richman
21
26
Richman
65
Richman
247
356
Richman
Richman
60
312
62
276
Richma...

result:

wrong answer 2nd lines differ - expected: '0', found: '-1'