QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#363557 | #7942. $K$ Subsequences | bobbilyking# | WA | 0ms | 3580kb | C++20 | 1.3kb | 2024-03-24 00:18:26 | 2024-03-24 00:18:27 |
Judging History
answer
#pragma GCC target ("avx2")
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#include<bits/stdc++.h>
#include<math.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
typedef pair<ll, ll> pl;
typedef vector<ll> vl;
#define FD(i, r, l) for(ll i = r; i > (l); --i)
#define K first
#define V second
#define G(x) ll x; cin >> x;
#define GD(x) ld x; cin >> x;
#define GS(s) string s; cin >> s;
#define EX(x) { cout << x << '\n'; exit(0); }
#define A(a) (a).begin(), (a).end()
#define F(i, l, r) for (ll i = l; i < (r); ++i)
template<typename A, typename B>
A& chmax(A &a, B b) { return a < b ? (a=b): a; }
template<typename A, typename B>
A& chmin(A &a, B b) { return a > b ? (a=b): a; }
const ll N = 2e5 + 10;
const ll M = 1000000007; // 998244353
vl belong;
ll n, k;
int main(){
// freopen("a.in", "r", stdin);
// freopen("a.out", "w", stdout);
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(20);
G(t) while(t--) {
cin >> n >> k;
priority_queue<pl, vector<pl>, greater<pl>> pq;
F(i, 1, k+1) pq.emplace(0, i);
F(i, 0, n){
G(x) auto [k, v] = pq.top(); pq.pop();
pq.emplace(k + 1, v);
cout << v << " ";
}
cout << '\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3580kb
input:
5 3 2 1 -1 1 4 2 -1 1 1 -1 7 3 1 1 1 1 1 1 1 10 3 1 1 1 1 -1 -1 1 1 1 1 12 4 1 1 1 1 -1 -1 -1 -1 1 1 1 1
output:
1 2 1 1 2 1 2 1 2 3 1 2 3 1 1 2 3 1 2 3 1 2 3 1 1 2 3 4 1 2 3 4 1 2 3 4
result:
wrong answer Jury found better answer than participant (test case 1)