QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#587914#6788. Heap Partitionpiggy123#WA 341ms18304kbC++203.1kb2024-09-24 22:36:512024-09-24 22:36:52

Judging History

你现在查看的是最新测评结果

  • [2024-09-24 22:36:52]
  • 评测
  • 测评结果:WA
  • 用时:341ms
  • 内存:18304kb
  • [2024-09-24 22:36:51]
  • 提交

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;
}

/*
                                                                
 ■■■■■     ■■      ■■■     ■■■   ■    ■     ■     ■■■■    ■■■■  
 ■   ■■    ■■     ■  ■■   ■  ■■  ■    ■    ■■     ■  ■■  ■■  ■  
 ■    ■    ■■    ■    ■  ■    ■   ■  ■    ■■■    ■■  ■■  ■   ■■ 
 ■    ■    ■■    ■    ■  ■    ■   ■  ■     ■■    ■   ■■      ■■ 
 ■    ■    ■■    ■       ■         ■■      ■■        ■■      ■  
 ■   ■■    ■■    ■  ■■■  ■  ■■■    ■■      ■■       ■■     ■■■  
 ■■■■■     ■■    ■    ■  ■    ■    ■■      ■■      ■■        ■■ 
 ■         ■■    ■    ■  ■    ■    ■■      ■■     ■■          ■ 
 ■         ■■    ■    ■  ■    ■    ■■      ■■     ■      ■   ■■ 
 ■         ■■    ■■  ■■  ■■  ■■    ■■      ■■    ■       ■■  ■■ 
 ■         ■■      ■■■■    ■■■■    ■■      ■■    ■■■■■■   ■■■■  
*/

详细

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.