QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#197131 | #6135. Books | HarryJ | WA | 60ms | 4380kb | C++23 | 998b | 2023-10-02 11:52:15 | 2023-10-02 11:52:16 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int,int> P;
const LL mod=998244353;
const int INF=0x3f3f3f3f;
const int N=1e5+10;
LL a[N];
int n,m;
void solve()
{
cin>>n>>m;
LL zero=0,miv=INF;
for(int i=1;i<=n;i++)
{
cin>>a[i];
miv=min(miv,a[i]);
if(!a[i]) zero++;
}
if(n==m) cout<<"Richman"<<endl;
else if(!m) cout<<miv-1<<endl;
else if(zero>m) cout<<"Impossible"<<endl;
else
{
m-=zero;
LL ans=0;
int id=-1;
LL miv=INF;
for(int i=1;i<=n&&m;i++)
if(a[i]) ans+=a[i],m--,id=i;
for(int i=id+1;i<=n;i++) miv=min(miv,a[i]);
cout<<ans+max(0LL,miv-1)<<endl;
}
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int tt; cin>>tt;
while(tt--) solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3624kb
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: 60ms
memory: 4380kb
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:
wrong answer 70th lines differ - expected: '315', found: '292'