QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#748172#6135. Bookstassei903#TL 0ms3480kbC++201.3kb2024-11-14 19:33:482024-11-14 19:33:48

Judging History

This is the latest submission verdict.

  • [2024-11-14 19:33:48]
  • Judged
  • Verdict: TL
  • Time: 0ms
  • Memory: 3480kb
  • [2024-11-14 19:33:48]
  • Submitted

answer

#include <bits/stdc++.h>

#define rep(i, l, r) for(int i = (int)l; i < (int)r; i++)
#define all(v) v.begin(), v.end()
#define sz(v) (int)v.size()
using namespace std;

using ll = long long;
using pll = pair<ll, ll>;
using pii = pair<int, int>;
using ld = long double;

typedef vector<ll> vl;
typedef vector<int> vi;

template<class T>
void out(const vector<T> &v) {
    for (auto x: v)cout << x << " ";
    cout << endl;
}

const ll linf = 1e15 + 10;

void solve() {
    
    int n, m; cin >> n >> m;
    vector<ll> a(n);for(auto &x: a) cin >> x;
    if (n == m) {
        cout << "Richman" << endl;
        return;
    }
    int zero = 0;
    rep(i, 0, n) if (a[i] == 0) zero++;
    if (zero > m) {
        cout << "Impossible" << endl;
        return;
    }
    
    ll x = 0;
    int r = m - zero;
    int i = 0;
    while (i < n && r) {
        if (a[i] == 0) continue;
        x += a[i];
        r--;
        i++;
    }
    ll z = linf;
    while (i < n) {
        if (a[i] != 0) {
            z = min(z, a[i]);
        }
        i++;
    }
    cout << x + z - 1 << endl;


}

int main() {


    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    while(T--) {
        solve();
    }
    
}

詳細信息

Test #1:

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

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
Time Limit Exceeded

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: