QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#117007#6667. ProsjekLaurie#16 191ms28956kbC++143.6kb2023-06-30 12:09:432024-05-31 18:37:09

Judging History

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

  • [2024-05-31 18:37:09]
  • 评测
  • 测评结果:16
  • 用时:191ms
  • 内存:28956kb
  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-06-30 12:09:43]
  • 提交

answer

//#include <bits/stdc++.h>
#include <iostream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <algorithm>
#include <climits>
#include <functional>
#include <cstring>
#include <string>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <complex>
#include <random>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define itn int
#define nit int
#define ll long long
#define ms multiset
#define F(i,a,b) for(register int i=a,i##end=b;i<=i##end;++i)
#define UF(i,a,b) for(register int i=a,i##end=b;i>=i##end;--i)
#define re register
#define ri re int
#define il inline
#define pii pair<ll,ll>
#define cp complex<double>
#define vi vector<int>
#define ull unsigned long long
#define mem0(x) memset(x,0,sizeof(x))
#define mem0x3f(x) memset(x,0x3f,sizeof(x))
using namespace std;
using std::bitset;
//using namespace __gnu_pbds;
const double Pi=acos(-1);
namespace fastIO {
	template<class T>
	inline void read(T &x) {
		x=0;
		bool fu=0;
		char ch=0;
		while(ch>'9'||ch<'0') {
			ch=getchar();
			if(ch=='-')fu=1;
		}
		while(ch<='9'&&ch>='0') x=(x*10-48+ch),ch=getchar();
		if(fu)x=-x;
	}
	inline int read() {
		int x=0;
		bool fu=0;
		char ch=0;
		while(ch>'9'||ch<'0') {
			ch=getchar();
			if(ch=='-')fu=1;
		}
		while(ch<='9'&&ch>='0') x=(x*10-48+ch),ch=getchar();
		return fu?-x:x;
	}
	template<class T,class... Args>
	inline void read(T& t,Args&... args) {
		read(t);
		read(args...);
	}
	char _n_u_m_[40];
	template<class T>
	inline void write(T x) {
		if(x==0){
			putchar('0');
			return;
		}
		T tmp = x > 0 ? x : -x ;
		if( x < 0 ) putchar('-') ;
		register int cnt = 0 ;
		while( tmp > 0 ) {
			_n_u_m_[ cnt ++ ] = tmp % 10 + '0' ;
			tmp /= 10 ;
		}
		while( cnt > 0 ) putchar(_n_u_m_[ -- cnt ]) ;
	}
	template<class T>
	inline void write(T x ,char ch) {
		write(x);
		putchar(ch);
	}
}
using namespace fastIO;
#define int long long
vector<pii>a,b,ans;
ll ta,tb;
inline void ac(vector<int>v,ll &ta,vector<pii>&a){
	vector<int>x,y;
	for(auto i:v){
		if((i&3)==(v[0]&3))x.push_back(i);
		else y.push_back(i);
	}
	while(x.size()>1||y.size()>1){
		if(x.size()>1){
			a.emplace_back(x.back(),x[x.size()-2]);
			ll z=x.back()+x[x.size()-2]>>1;
			x.pop_back();x.pop_back();
			if((z&3)==(v[0]&3))x.push_back(z);
			else y.push_back(z);
		}else{
			a.emplace_back(y.back(),y[y.size()-2]);
			ll z=y.back()+y[y.size()-2]>>1;
			y.pop_back();y.pop_back();
			if((z&3)==(v[0]&3))x.push_back(z);
			else y.push_back(z);
		}
	}
	if(x.size()&&y.size())ta=(x[0]+y[0])>>1,a.emplace_back(x[0],y[0]);
	else if(x.size())ta=x[0];
	else ta=y[0];
}
inline void op(vector<pii>ans){
	for(auto i:ans)write(i.first,' '),write(i.second,'\n');
}
inline bool check(vector<int>v,int d){
	if(v.size()<=d)return false;
	vector<int>x,y;
	for(auto i:v){
		if(i>>d&1)x.push_back(i);
		else y.push_back(i);
	}
	if(x.size()&&y.size())return true;
	else if(x.size())return check(x,d+1);
	else return check(y,d+1);
}
signed main() {
	F(asdf,1,read()){
		a.clear(),b.clear(),ans.clear();
		ta=tb=0;
		vector<ll>x,y;
		F(i,1,read()){
			ll v;read(v);
			if(v&1)x.push_back(v);
			else y.push_back(v);
		}
		if(y.empty()){
			ac(x,ta,a);
			op(a);
			continue;
		}
		if(x.empty()){
			ac(y,tb,b);
			op(b);
			continue;
		}
		sort(x.begin(),x.end());
		sort(y.begin(),y.end());
		ac(x,ta,a);
		ac(y,tb,b);
		if(check(x,1)){
			
		}else if(check(y,1)){
			
		}else{
			puts("-1");
		}
	}
	return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3564kb

input:

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

output:

77979357045500669 41693388829622019
-1
-1
677471552430420695 153422622425090619
-1
-1
-1
3994747905204313 884562752552611953
-1
306233065082806734 841634384550345462
573933724816576098 880394701391566042
-1
-1
721556713325595779 617654635761721287
29003136720808195 325048527896240691
177025832308524...

result:

wrong answer Integer -1 violates the range [0, 10^18] (test case 1)

Subtask #2:

score: 0
Wrong Answer

Test #16:

score: 0
Wrong Answer
time: 0ms
memory: 3456kb

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:

-1
-1
0 0
0 2
4 0
4 0
2 2
2 2
4 2
1 1
3 3
-1
4 4
4 0
0 2
-1
-1
4 4
4 0
2 2
-1
2 4
-1
0 4
-1
-1
-1
0 4
0 4
2 2
2 2
0 2
2 2
2 2
4 0
2 2
2 4
-1
-1
4 0
4 0
0 2
-1
-1
-1
-1
0 0
0 0
0 0
0 2
-1
2 2
4 0
2 2

result:

wrong answer there's no 0 in the current set (test case 3)

Subtask #3:

score: 16
Accepted

Test #34:

score: 16
Accepted
time: 114ms
memory: 3564kb

input:

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

output:

104256763714529164 846784256447769304
475520510081149234 597630796847754190
128469521648960690 457696478728961702
293083000188961196 536575653464451712
425723088635325654 399538027669313322
472135077337628566 658897822238868978
565516449788248772 412630558152319488
489073503970284130 622703684108675...

result:

ok correct (100000 test cases)

Test #35:

score: 0
Accepted
time: 124ms
memory: 3552kb

input:

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

output:

341497234016264540 958712444844113692
650104839430189116 143141501854884272
396623170642536694 132941437397264810
150311691204302148 930609521602302292
540460606403302220 923004266892618172
244405681344585926 213670074288711286
229037877816648606 819335542601433618
524186710209041112 731732436647960...

result:

ok correct (100000 test cases)

Test #36:

score: 0
Accepted
time: 132ms
memory: 3496kb

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
586121775832640934 561025252182682906
573573514007661920 690070772109811286
54251562555326842 627239866615848210
340745714585587526 42470017740412280
348318035919019310 490057757292451598
419187896605735454 818062735467254804
551686081736618768 19448823177424645...

result:

ok correct (100000 test cases)

Test #37:

score: 0
Accepted
time: 151ms
memory: 3572kb

input:

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

output:

30435765695090076 571028682295683456
859039596531178468 264400470199418708
561720033365298588 635574780184696680
915405723947874872 375191889860000444
645298806903937658 598647406774997634
621973106839467646 300732223995386766
461352665417427206 81051167961127742
271201916689277474 87631430709528003...

result:

ok correct (50000 test cases)

Test #38:

score: 0
Accepted
time: 168ms
memory: 3732kb

input:

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

output:

280145788708142508 801974222113409124
541060005410775816 982990013470682716
706594708190768848 907522706303602556
679519095246181928 197769932466201968
438644513856191948 552932543009462260
495788528432827104 213144199738872896
354466364085850000 56435783243285828
205451073664567914 8070587072471857...

result:

ok correct (50000 test cases)

Test #39:

score: 0
Accepted
time: 167ms
memory: 3512kb

input:

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

output:

402837784917503802 473640262986677202
438239023952090502 72184531803437802
691789987581261114 415287407545536222
242048409095362442 475365328934162610
358706869014762526 738663892302361454
548685380658561990 687533614023914694
553538697563398668 255211777877764152
404375237720581410 6181094973412383...

result:

ok correct (50000 test cases)

Test #40:

score: 0
Accepted
time: 147ms
memory: 3564kb

input:

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

output:

304233754191711742 691288776835558270
497761265513635006 561451759575364210
187841411256048522 607769333277773430
726814281386478566 353003950140523154
755279683495886594 752651620972947846
563069662510759842 489548012753296822
928134668660137906 465306500019836282
696720584339987094 701453932981408...

result:

ok correct (30000 test cases)

Test #41:

score: 0
Accepted
time: 159ms
memory: 3712kb

input:

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

output:

40187248199180534 556915919971198542
298551584085189538 801262516027000718
973662733681459690 107191591092647094
762434076887201766 320805890715812130
582465764474213950 504011063830422278
543238414152318114 824295231323480318
683766822737899216 541619983801506948
612693403269703082 8025538496231297...

result:

ok correct (30000 test cases)

Test #42:

score: 0
Accepted
time: 159ms
memory: 3404kb

input:

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

output:

300417521345265250 859029090720613882
579723306032939566 259672969948699182
419698137990819374 296153793859866470
357925965925342922 100513548134942846
654459612358466674 842102259870000526
830727952675976422 243201017518706110
536964485097341266 28952855744712754
282958670421027010 1055422253994351...

result:

ok correct (30000 test cases)

Test #43:

score: 0
Accepted
time: 180ms
memory: 24020kb

input:

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

output:

780781389890772134 462546456847920258
983273217073289170 54703858887732306
518988537980510738 121007210812414874
319997874396462806 542567485305147330
699873189331273774 290960058824475954
376100996009174838 900230839515231562
991186553665267026 816742406526247918
367304094746744434 9741747154996249...

result:

ok correct (100 test cases)

Test #44:

score: 0
Accepted
time: 191ms
memory: 28956kb

input:

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

output:

812530407663751406 882679806250695874
810693562577937022 8779693935145434
965388653482500574 170815080687607818
69534330454674702 237228791906436414
153381561180555558 101818031440929414
127599796310742486 35815535861853234
992738391753996806 668547857570069198
830643124662033002 368053302377111882
...

result:

ok correct (100 test cases)

Test #45:

score: 0
Accepted
time: 170ms
memory: 23496kb

input:

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

output:

486076417769142294 37999509308599778
747053273988117554 660483425940083014
898547649727091586 492361107982889110
112077483133802110 400296715320192834
344698049360243802 31999092811195266
188348571085719534 661442386984787514
507442215373602266 941686615472184130
724564415422893198 93061223624921684...

result:

ok correct (100 test cases)

Subtask #4:

score: 0
Wrong Answer

Test #46:

score: 0
Wrong Answer
time: 123ms
memory: 18732kb

input:

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

output:

-1
-1
-1
742536530921432840 749318179341718328
719305379065820542 978135283799375274
848720331432597908 745927355131575584
749857132494344162 311961926661567072
473540720761303878 30159557389233966
-1
922679050058682027 582096063150790031
752387556604736029 251768162994159481
621614043314617965 6999...

result:

wrong answer you didn't find a solution but jury did (test case 1)