QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#401727#6667. ProsjekKevin530716 1006ms56072kbC++233.9kb2024-04-29 11:11:512024-04-29 11:11:51

Judging History

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

  • [2024-04-29 11:11:51]
  • 评测
  • 测评结果:16
  • 用时:1006ms
  • 内存:56072kb
  • [2024-04-29 11:11:51]
  • 提交

answer

//Author: Kevin
#include<bits/stdc++.h>
//#pragma GCC optimize("O2")
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb emplace_back
#define mp make_pair
#define ALL(x) (x).begin(),(x).end()
#define rALL(x) (x).rbegin(),(x).rend()
#define srt(x) sort(ALL(x))
#define rev(x) reverse(ALL(x))
#define rsrt(x) sort(rALL(x))
#define sz(x) (int)(x.size())
#define inf 0x3f3f3f3f
#define pii pair<int,int>
#define lb(v,x) (int)(lower_bound(ALL(v),x)-v.begin())
#define ub(v,x) (int)(upper_bound(ALL(v),x)-v.begin())
#define uni(v) v.resize(unique(ALL(v))-v.begin())
#define longer __int128_t
void die(string S){puts(S.c_str());exit(0);}
mt19937_64 rnd(20210448);
vector<pair<ll,ll>> op;
bool dfs(vector<ll> vec)
{
	if(sz(vec)==1) return true;
	for(int i=0;i<sz(vec);i++)
		for(int j=i+1;j<sz(vec);j++) if((vec[i]^vec[j]^1)&1)
		{
			op.pb(vec[i],vec[j]);
			vector<ll> vec2;
			for(int k=0;k<sz(vec);k++)
				if(i!=k&&j!=k)
					vec2.pb(vec[k]);
			vec2.pb(vec[i]+vec[j]>>1);
			if(dfs(vec2)) return true;
			op.pop_back();
		}
	return false;
}
void brute_force(vector<ll> vec)
{
	assert(dfs(vec));
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t;
	cin>>t;
	while(t--)
	{
		op.clear();
		int n;
		cin>>n;
		vector<ll> vec;
		multiset<ll> ms[4];
		for(int i=0;i<n;i++)
		{
			ll x;
			cin>>x;
			vec.pb(x);
			ms[x&3].insert(x);
		}
		while(n-sz(op)>7)
		{
			if(sz(ms[0])&&sz(ms[2])) break;
			if(sz(ms[1])&&sz(ms[3])) break;
			int x=rnd()%4;
			if(sz(ms[0])<2&&sz(ms[1])<2&&sz(ms[2])<2&&sz(ms[3])<2) break;
			while(sz(ms[x])<2) x=rnd()%4;
			ll val=rnd()%(*ms[x].rbegin()+1);
			ll A=*ms[x].lower_bound(val);
			ms[x].erase(ms[x].lower_bound(A));
			val=rnd()%(*ms[x].rbegin()+1);
			ll B=*ms[x].lower_bound(val);
			ms[x].erase(ms[x].lower_bound(B));
			op.pb(A,B);
			ll C=A+B>>1;
			ms[C&3].insert(C);
		}
		if(n-sz(op)<=7)
		{
			vector<ll> vec;
			for(int i=0;i<4;i++)
				for(auto x:ms[i])
					vec.pb(x);
			brute_force(vec);
		}
		else if(sz(ms[0])&&sz(ms[2]))
		{
			vector<ll> vec;
			vec.pb(*ms[0].begin());
			vec.pb(*ms[2].begin());
			ms[0].erase(ms[0].begin());
			ms[2].erase(ms[2].begin());
			multiset<ll> ms2[2];
			for(int i=0;i<4;i++)
				for(auto x:ms[i])
					ms2[i&1].insert(x);
			while(sz(ms2[0])>1||sz(ms2[1])>1)
			{
				if(sz(ms2[0])>1)
				{
					ll A=*ms2[0].begin();
					ll B=*ms2[0].rbegin();
					ms2[0].erase(ms2[0].lower_bound(A));
					ms2[0].erase(ms2[0].lower_bound(B));
					ll C=A+B>>1;
					op.pb(A,B);
					ms2[C&1].insert(C);
				}
				else
				{
					ll A=*ms2[1].begin();
					ll B=*ms2[1].rbegin();
					ms2[1].erase(ms2[1].lower_bound(A));
					ms2[1].erase(ms2[1].lower_bound(B));
					ll C=A+B>>1;
					op.pb(A,B);
					ms2[C&1].insert(C);
				}
			}
			for(int i=0;i<2;i++)
				for(auto x:ms2[i])
					vec.pb(x);
			brute_force(vec);
		}
		else if(sz(ms[1])&&sz(ms[3]))
		{
			vector<ll> vec;
			vec.pb(*ms[1].begin());
			vec.pb(*ms[3].begin());
			ms[1].erase(ms[1].begin());
			ms[3].erase(ms[3].begin());
			multiset<ll> ms2[2];
			for(int i=0;i<4;i++)
				for(auto x:ms[i])
					ms2[i&1].insert(x);
			while(sz(ms2[0])>1||sz(ms2[1])>1)
			{
				if(sz(ms2[0])>1)
				{
					ll A=*ms2[0].begin();
					ll B=*ms2[0].rbegin();
					ms2[0].erase(ms2[0].lower_bound(A));
					ms2[0].erase(ms2[0].lower_bound(B));
					ll C=A+B>>1;
					op.pb(A,B);
					ms2[C&1].insert(C);
				}
				else
				{
					ll A=*ms2[1].begin();
					ll B=*ms2[1].rbegin();
					ms2[1].erase(ms2[1].lower_bound(A));
					ms2[1].erase(ms2[1].lower_bound(B));
					ll C=A+B>>1;
					op.pb(A,B);
					ms2[C&1].insert(C);
				}
			}
			for(int i=0;i<2;i++)
				for(auto x:ms2[i])
					vec.pb(x);
			brute_force(vec);
		}
		if(sz(op)!=n-1)
			cout<<-1<<'\n';
		else for(auto pr:op)
			cout<<pr.first<<" "<<pr.second<<'\n';
	}
	return 0;
}

详细

Subtask #1:

score: 0
Runtime Error

Test #1:

score: 0
Runtime Error

input:

99
4
739880851158065302 19206582949872932 883064254701115295 222072661880779376
7
148399819461615003 209088712310207988 53191076581680214 445068618251612752 230505279594622109 115754892157516718 804173775829453588
2
77979357045500669 41693388829622019
3
341612949433488278 609808714829036935 19994167...

output:


result:


Subtask #2:

score: 0
Runtime Error

Test #16:

score: 0
Runtime Error

input:

100
3
3 3 2
3
4 1 1
4
1 3 4 4
6
4 4 2 3 1 2
4
0 2 1 4
3
0 2 0
7
3 3 1 1 3 4 0
2
0 4
4
1 4 2 3
7
4 0 0 3 2 3 4
4
4 2 0 3
7
0 2 2 1 4 2 4
7
3 0 3 1 2 0 3
4
4 3 1 4
6
2 3 0 1 3 4
5
1 4 0 3 4
5
4 2 0 4 2
3
0 1 2
6
4 1 4 2 0 4
7
4 2 4 3 1 3 1
4
1 4 4 0
2
1 1
6
0 3 3 0 0 4
7
4 3 0 3 3 3 4
4
4 1 1 3
6
2 0 ...

output:


result:


Subtask #3:

score: 16
Accepted

Test #34:

score: 16
Accepted
time: 218ms
memory: 3640kb

input:

100000
5
846784256447769304 457696478728961702 128469521648960690 597630796847754190 104256763714529164
5
658897822238868978 472135077337628566 399538027669313322 622703684108675696 425723088635325654
5
917704960887390986 140817562615382054 877934664521057998 782212806618666818 616380973421914538
8
...

output:

104256763714529164 846784256447769304
128469521648960690 457696478728961702
597630796847754190 475520510081149234
293083000188961196 536575653464451712
622703684108675696 399538027669313322
425723088635325654 658897822238868978
472135077337628566 542310455437097316
511120855888994509 507222766387362...

result:

ok correct (100000 test cases)

Test #35:

score: 16
Accepted
time: 224ms
memory: 3808kb

input:

100000
4
132941437397264810 143141501854884272 958712444844113692 341497234016264540
7
923004266892618172 15365813785503270 930609521602302292 819335542601433618 213670074288711286 150311691204302148 244405681344585926
5
371893080714371800 575829750571342010 292988012239447120 115093373296591180 268...

output:

143141501854884272 341497234016264540
132941437397264810 242319367935574406
958712444844113692 187630402666419608
150311691204302148 923004266892618172
930609521602302292 15365813785503270
213670074288711286 244405681344585926
536657979048460160 229037877816648606
472987667693902781 3828479284325543...

result:

ok correct (100000 test cases)

Test #36:

score: 16
Accepted
time: 219ms
memory: 3580kb

input:

100000
4
928198344825292264 690070772109811286 244045206839989604 561025252182682906
3
627239866615848210 42470017740412280 54251562555326842
3
490057757292451598 818062735467254804 348318035919019310
2
551686081736618768 194488231774246450
3
112852023970360962 332810104058707034 451110399052627062
...

output:

244045206839989604 928198344825292264
561025252182682906 690070772109811286
586121775832640934 625548012146247096
54251562555326842 627239866615848210
42470017740412280 340745714585587526
348318035919019310 490057757292451598
818062735467254804 419187896605735454
551686081736618768 19448823177424645...

result:

ok correct (100000 test cases)

Test #37:

score: 16
Accepted
time: 311ms
memory: 3640kb

input:

50000
15
970453612553526824 403854393807928174 722892131244078370 35115189723455662 375191889860000444 915405723947874872 635574780184696680 264400470199418708 859039596531178468 27938184881043946 553805664139227226 876314307095280030 571028682295683456 30435765695090076 81051167961127742
20
7987413...

output:

35115189723455662 970453612553526824
81051167961127742 915405723947874872
264400470199418708 876314307095280030
375191889860000444 859039596531178468
403854393807928174 722892131244078370
553805664139227226 635574780184696680
563373262526003272 617115743195589456
571028682295683456 59024450286079636...

result:

ok correct (50000 test cases)

Test #38:

score: 16
Accepted
time: 312ms
memory: 3644kb

input:

50000
20
998788559176849620 191593882411529926 342711646561735406 56435783243285828 213144199738872896 552932543009462260 862655508602678778 197769932466201968 649107231900330578 606332158266321414 679519095246181928 69228654018660218 907522706303602556 706594708190768848 317996892998797510 98299001...

output:

82951860797867962 998788559176849620
191593882411529926 982990013470682716
197769932466201968 907522706303602556
213144199738872896 862655508602678778
233934493014788330 801974222113409124
280145788708142508 706594708190768848
317996892998797510 679519095246181928
342711646561735406 6491072319003305...

result:

ok correct (50000 test cases)

Test #39:

score: 16
Accepted
time: 324ms
memory: 3636kb

input:

50000
19
687533614023914694 738663892302361454 628044408557611320 475365328934162610 242048409095362442 254414508714647088 415287407545536222 333427085181162020 691789987581261114 501496830456417768 370865072857248388 610878478005084624 460491699469405256 995621599317911412 72184531803437802 5221300...

output:

242048409095362442 995621599317911412
333427085181162020 738663892302361454
370865072857248388 691789987581261114
402837784917503802 687533614023914694
415287407545536222 628044408557611320
435000735991149736 610878478005084624
460491699469405256 545185699470709248
473640262986677202 522939606998117...

result:

ok correct (50000 test cases)

Test #40:

score: 16
Accepted
time: 311ms
memory: 3592kb

input:

30000
25
701453932981408346 465306500019836282 792774089369512740 928134668660137906 489548012753296822 563069662510759842 456553328586506700 752651620972947846 610563120623014800 946872198162810216 382124190056540228 528408240467204940 156080508230960224 755279683495886594 353003950140523154 726814...

output:

264865148139811024 946872198162810216
304233754191711742 928134668660137906
331430792491044112 792774089369512740
353003950140523154 759546580482469476
382124190056540228 755279683495886594
456553328586506700 752651620972947846
465306500019836282 726814281386478566
489548012753296822 701453932981408...

result:

ok correct (30000 test cases)

Test #41:

score: 16
Accepted
time: 327ms
memory: 3592kb

input:

30000
24
802553849623129746 211707666543464912 78106851365388652 41150834245659428 824295231323480318 65220471583082028 504011063830422278 582465764474213950 653316240753155704 254391730000013712 73470169815090336 70058062306145696 320805890715812130 762434076887201766 107191591092647094 66623182252...

output:

65220471583082028 973662733681459690
66623182252282192 824295231323480318
70058062306145696 802553849623129746
73470169815090336 801262516027000718
78106851365388652 762434076887201766
107191591092647094 713862378171374300
211707666543464912 684143755784659968
254391730000013712 653316240753155704
3...

result:

ok correct (30000 test cases)

Test #42:

score: 16
Accepted
time: 296ms
memory: 3888kb

input:

30000
27
457692759396051910 105542225399435134 28952855744712754 551775949854678384 243201017518706110 830727952675976422 770508119165800012 202072001288194376 842102259870000526 184524967708115324 636362069740656520 654459612358466674 183209892432401444 100513548134942846 72707763558771580 42597951...

output:

80157746650466448 968793307366073360
88106760930326920 938142428437837892
100513548134942846 935240383379985812
105542225399435134 932151312699294980
154087971015879464 859029090720613882
183209892432401444 842102259870000526
184524967708115324 830727952675976422
202072001288194376 77050811916580001...

result:

ok correct (30000 test cases)

Test #43:

score: 16
Accepted
time: 1006ms
memory: 45376kb

input:

100
365633
240280625535601202 938026129049958522 147115906397155306 652580989323075650 725975096118295602 205776298062652394 601103849421971138 331987681752388762 840580362429635958 835259996207496842 119358021292888398 319502650126227206 963133797479057582 879470558738716974 741484002023142690 3370...

output:

780525308016947346 500225112875803534
3529522101850 999998314036225950
7968875390110 999994459947143802
9137977473786 999993322572884726
9569483208450 999988952471980734
9877875386422 999979646944405746
11309686212834 999978113138479830
14694421398306 999974952944140930
15836622505222 99997394600825...

result:

ok correct (100 test cases)

Test #44:

score: 16
Accepted
time: 1004ms
memory: 56072kb

input:

100
468798
784219641558971418 868193736931466770 709669653094040434 820342537947112058 551143489403660526 267279653811163658 370522601251248390 368960240455457934 377406818992348662 446571520515917398 203417725700526758 781465163407686018 793863659816666930 689102809204233742 460833182899194594 8845...

output:

780530000159596402 500229199061487274
919901594277381722 728781008380442714
199315919844213126 170248096617253178
839909402466 999998051535839950
1954818138646 999997480227244470
2000236587010 999994057763429462
5968312633518 999989314391800150
6905526210190 999988131520223090
8294507717898 99998771...

result:

ok correct (100 test cases)

Test #45:

score: 16
Accepted
time: 907ms
memory: 46340kb

input:

100
335003
576606818757903242 39138102231712338 101565358810296722 500967049719563958 60093483316193590 435418544638688670 883896893287765898 482015906798694930 208166390296394766 603169642587608970 697598340090102702 37116072285605102 692409274069565602 359039270687175358 598214522887322026 9588135...

output:

6592524639274 999998172490495542
10567174034114 999988200378028302
15470717418950 999986031944739378
22543957320962 999985235589577006
22606300576930 999980006688674814
24649258563034 999974808021380542
25101088583370 999974031844918374
32590029487838 999971393566384006
32888945987010 99996999410761...

result:

ok correct (100 test cases)

Subtask #4:

score: 0
Runtime Error

Test #46:

score: 0
Runtime Error

input:

100
211957
911918942087402387 344230223346742784 16289402153237664 528890583619159010 886281719684850237 865484734102017297 321851390502278959 754268375474197153 237414161302130571 135637002716682378 824412491959977735 162505521049217610 246319278060116103 666703181591704279 650875500699154233 96397...

output:

31085673180124 999989589595986634
33205888651982 999967720480985884
34309878991530 999926091055107568
36334989799378 999921514477613516
43680954048084 999893240413030728
44955319228942 999830205792296778
46096509730566 999828945334385854
46513046285636 999827896360143458
50005704499586 9998174126302...

result: