QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#587914 | #6788. Heap Partition | piggy123# | WA | 341ms | 18304kb | C++20 | 3.1kb | 2024-09-24 22:36:51 | 2024-09-24 22:36:52 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll a[200005],deg[200005];
vector<ll> vv[200005];
int main(){
cin.tie(0);cout.tie(0);
ios::sync_with_stdio(false);
ll t;
cin >> t;
while (t--){
ll n;
cin >> n;
for (ll i=1;i<=n;i++){
cin >> a[i];
vv[i].clear();deg[i]=0;
}
set<pair<ll,pair<ll,ll>>> st;
ll p=0;
for (ll i=1;i<=n;i++){
if (st.empty()||st.begin()->first>a[i]){
st.insert({a[i],{i,i}});
++p;
vv[i].push_back(i);
}else {
auto p=st.begin()->second;
++deg[p.second];
if (deg[p.second]==2)st.erase(st.begin());
st.insert({a[i],{p.first,i}});
vv[p.first].push_back(i);
}
}
cout<< p<<"\n";
for (ll i=1;i<=n;i++){
if (vv[i].size()){
cout<< vv[i].size()<<" ";
for (ll j:vv[i])cout<<j<<" ";
cout<<"\n";
}
}
}
return 0;
}
/*
■■■■■ ■■ ■■■ ■■■ ■ ■ ■ ■■■■ ■■■■
■ ■■ ■■ ■ ■■ ■ ■■ ■ ■ ■■ ■ ■■ ■■ ■
■ ■ ■■ ■ ■ ■ ■ ■ ■ ■■■ ■■ ■■ ■ ■■
■ ■ ■■ ■ ■ ■ ■ ■ ■ ■■ ■ ■■ ■■
■ ■ ■■ ■ ■ ■■ ■■ ■■ ■
■ ■■ ■■ ■ ■■■ ■ ■■■ ■■ ■■ ■■ ■■■
■■■■■ ■■ ■ ■ ■ ■ ■■ ■■ ■■ ■■
■ ■■ ■ ■ ■ ■ ■■ ■■ ■■ ■
■ ■■ ■ ■ ■ ■ ■■ ■■ ■ ■ ■■
■ ■■ ■■ ■■ ■■ ■■ ■■ ■■ ■ ■■ ■■
■ ■■ ■■■■ ■■■■ ■■ ■■ ■■■■■■ ■■■■
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5640kb
input:
4 4 1 2 3 4 4 2 4 3 1 4 1 1 1 1 5 3 2 1 4 1
output:
1 4 1 2 3 4 2 3 1 2 3 1 4 1 4 1 2 3 4 3 1 1 1 2 3 3 4 5
result:
ok ok
Test #2:
score: -100
Wrong Answer
time: 341ms
memory: 18304kb
input:
72284 1 1 2 1 1 2 2 1 2 1 2 2 2 2 3 1 1 1 3 2 1 1 3 3 1 1 3 1 2 1 3 2 2 1 3 3 2 1 3 1 3 1 3 2 3 1 3 3 3 1 3 1 1 2 3 2 1 2 3 3 1 2 3 1 2 2 3 2 2 2 3 3 2 2 3 1 3 2 3 2 3 2 3 3 3 2 3 1 1 3 3 2 1 3 3 3 1 3 3 1 2 3 3 2 2 3 3 3 2 3 3 1 3 3 3 2 3 3 3 3 3 3 4 1 1 1 1 4 2 1 1 1 4 3 1 1 1 4 4 1 1 1 4 1 2 1 1 ...
output:
1 1 1 1 2 1 2 2 1 1 1 2 1 2 1 2 1 2 1 2 1 3 1 2 3 2 1 1 2 2 3 2 1 1 2 2 3 1 3 1 2 3 2 2 1 2 1 3 3 1 1 1 2 1 3 1 3 1 2 3 2 2 1 2 1 3 2 2 1 2 1 3 1 3 1 2 3 2 1 1 2 2 3 2 1 1 2 2 3 1 3 1 2 3 1 3 1 2 3 2 1 1 2 2 3 1 3 1 2 3 1 3 1 2 3 2 2 1 2 1 3 1 3 1 2 3 2 1 1 2 2 3...
result:
wrong answer jury has a better answer on case 53.