QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#587931#6788. Heap Partitionpiggy123#AC ✓409ms15352kbC++203.2kb2024-09-24 22:43:272024-09-24 22:43:27

Judging History

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

  • [2024-09-24 22:43:27]
  • 评测
  • 测评结果:AC
  • 用时:409ms
  • 内存:15352kb
  • [2024-09-24 22:43:27]
  • 提交

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=prev(st.upper_bound({a[i],{1e9,1e9}}));
				
				pair<ll,ll> p2=p->second;
				++deg[p2.second];
//				cout<<i<<":"<< p2.first<<","<<p2.second<< "\n";
				if (deg[p2.second]==2)st.erase(p);
				st.insert({a[i],{p2.first,i}});
				vv[p2.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;
}

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

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 7524kb

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
2 1 4 
1 2 
2 3 5 

result:

ok ok

Test #2:

score: 0
Accepted
time: 409ms
memory: 15352kb

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
2 1 3 
1 2 
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
2 1 3 
1 2...

result:

ok ok