QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#185386 | #6135. Books | chitoge | AC ✓ | 60ms | 5760kb | C++20 | 1.2kb | 2023-09-21 23:30:52 | 2023-09-21 23:30:53 |
Judging History
answer
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
//booster_^^
#include<bits/stdc++.h>
#define FC(a,b,c) for(int i=a;i<b;i++)cin>>c[i]
#define Fn(n) for(int i=0;i<n;i++)
#define fin(a,n) for(int i=0;i<n;i++)cin>>a[i]
#define F(a,b) for(int i=a;i<b;i++)
#define all(a) a.begin(),a.end()
#define umap_boost(x) x.reserve(1024);x.max_load_factor(0.25);
// #define endl '\n'
#define int long long
using namespace std;
inline void cin_unlocked()
{
std::ios::sync_with_stdio(false);
std::cin.tie(0);
}
template <typename T>
inline void stable_unique(vector<T>& v ){
set<T> m(v.begin(),v.end());
v.assign(m.begin(),m.end());
}
inline void solve(){
int n,k;
cin>>n>>k;
vector<int> arr(n);
for(int i=0;i<n;i++)cin>>arr[i];
if(k==n){
cout<<"Richman"<<endl;
return;
}
vector<int> brr;
for(int i=0;i<n;i++)if(arr[i])brr.push_back(arr[i]);else k--;
if(k<0){
cout<<"Impossible"<<endl;
return;
}
int ans=0;int in=brr[k];
for(int i=0;i<brr.size();i++){
if(i<k){
ans+=brr[i];
}else{
in=min(in,brr[i]);
}
}
cout<<ans+in-1<<endl;
}
signed main(){
cin_unlocked();
int t;cin>>t;
for(;t--;)solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3428kb
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: 60ms
memory: 4988kb
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: 54ms
memory: 5760kb
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