QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#533815#6135. BooksTomato_Fish#AC ✓65ms4244kbC++14947b2024-08-26 15:04:502024-08-26 15:04:50

Judging History

This is the latest submission verdict.

  • [2024-08-26 15:04:50]
  • Judged
  • Verdict: AC
  • Time: 65ms
  • Memory: 4244kb
  • [2024-08-26 15:04:50]
  • Submitted

answer

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

typedef long long ll;
const int N=1e5+100;
int a[N];

int main()
{

    int T;scanf("%d",&T);

    while(T--){
        int n,m;
        scanf("%d%d",&n,&m);

        for(int i=1;i<=n;i++) scanf("%d",&a[i]);

        if(m==n){
            printf("Richman\n");
            continue;
        }

        int Sum=0;
        for(int i=1;i<=n;i++)
            if(!a[i]) Sum++;
        
        if(Sum>m){
            printf("Impossible\n");
            continue;
        }
        ll Ans=0;
        for(int i=1;i<=n;i++){
            if(Sum==m){
                int mn=1e9;
                for(int j=i;j<=n;j++)
                    if(a[j]) mn=min(mn,a[j]);
                Ans=Ans+(mn-1);break;
            }
            if(a[i]){
                Sum++;
                Ans+=a[i];
            }
        }

        printf("%lld\n",Ans);
    }

    return 0;
}

詳細信息

Test #1:

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

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: 0
Accepted
time: 63ms
memory: 4244kb

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

result:

ok 10012 lines

Test #3:

score: 0
Accepted
time: 65ms
memory: 4180kb

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
0
Impossible
99999999999999
Richman
Impossible
697
123
Richman
Impossible
Richman
335
Richman
Impossible
Richman
486
Richman
Impossible
57
41
Richman
Impossible
42
Richman
Richman
99
106
Richman
Richman
Impossible
Richman
Richman
Richman
Impossible
164
26
Richman
43
Richman
Richman
Richman
Impossi...

result:

ok 10012 lines