QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#310641 | #6135. Books | BrotherCall# | WA | 1ms | 5560kb | C++14 | 871b | 2024-01-21 16:29:38 | 2024-01-21 16:29:39 |
Judging History
answer
#include <iostream>
#include <cstdio>
#include <cmath>
#include <sstream>
#include <cstring>
#include <queue>
#define int long long
using namespace std;
const int N = 1e6 + 100;
int t;
int n , m , a[N] , maxx[N] , minn[N];
char c1[N] , c2[N];
signed main() {
cin >> t;
while(t --) {
cin >> n >> m;
if(n == m) {
cout << "Richman\n";
continue;
}
for(int i = 1;i <= n;i ++)
cin >> a[i];
int l = 0 , r = 1e14 , ans = -1;
while(l <= r) {
int mid = l + r >> 1;
int now = mid;
int sum = 0;
for(int i = 1;i <= n;i ++) {
if(now >= a[i]) {
now -= a[i];
sum ++;
}
}
if(sum == m) {
ans = mid;
l = mid + 1;
} else if(sum > m) {
r = mid - 1;
} else if(sum < m) l = mid + 1;
}
if(ans == -1) cout << "Impossible\n";else
cout << ans << endl;
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 5560kb
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 Richman
result:
wrong answer 4th lines differ - expected: 'Impossible', found: 'Richman'