QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#492553#6135. BookspriudyRE 56ms5216kbC++14784b2024-07-26 13:36:532024-07-26 13:36:53

Judging History

This is the latest submission verdict.

  • [2024-07-26 13:36:53]
  • Judged
  • Verdict: RE
  • Time: 56ms
  • Memory: 5216kb
  • [2024-07-26 13:36:53]
  • Submitted

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=110005;
int n,k;
int a[N],minl[N];
void solve(){
	cin>>n>>k;
	int p=0;
	for(int i=1,x;i<=n;i++){
		cin>>x;
		if(x)a[++p]=x;
		else k--;
	}
	int ans=0;
	minl[p+1]=1e9+5;
	for(int i=p;i>=1;i--){
		minl[i]=min(minl[i+1],a[i]);
	}
	
	for(int i=1;i<=k;i++){
		ans+=a[i];
	}
		if(p==k){
			cout<<"Richman"<<endl;
			return;
		}
		else {
			if(minl[k+1]==0){
				cout<<"Impossible"<<endl;	
				return;
			}
			ans+=minl[k+1]-1;
			cout<<ans<<endl;
		}

	return;
}
signed main() {
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
	//freopen("in.txt","r",stdin);
	//freopen("out.txt","w",stdout);
	int t=1;
	cin>>t;
	while(t--){
		solve();
	}
    return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 56ms
memory: 5216kb

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: -100
Runtime Error

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
139861313460175
57
41
Richman
Impossible
42
Richman
Richman
99
106
Richman
Richman
Impossible
Richman
Richman
Richman
Impossible
164
26
Richman
43
Richman
Richman
Richman
13...

result: