QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#310646 | #6135. Books | BrotherCall# | WA | 221ms | 5740kb | C++14 | 876b | 2024-01-21 16:34:44 | 2024-01-21 16:34:44 |
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;
for(int i = 1;i <= n;i ++)
cin >> a[i];
int l = 0 , r = 1e14 , ans = -1;
int wcnm = r;
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 == wcnm) cout << "Richman\n";else
if(ans == -1) cout << "Impossible\n";else
cout << ans << endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 5740kb
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: 221ms
memory: 5684kb
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 38 80 Richman 97 460 Richman 24 90 98 30 15 Richman Richman Richman 54 Richman Richman 450 24 44 349 34 513 28 161 238 Richman Richman Richman 66 274 2 160 76 58 91 71 3 Richman 125 32 15 Richman 21 26 Richman 7 Richman 247 300 Richman Richman 60 312 62 276 Richman 67 R...
result:
wrong answer 5th lines differ - expected: '192', found: '38'