結果

問題 No.2732 Similar Permutations
ユーザー shobonvipshobonvip
提出日時 2024-04-19 23:10:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,969 bytes
コンパイル時間 4,521 ms
コンパイル使用メモリ 266,088 KB
実行使用メモリ 610,432 KB
最終ジャッジ日時 2024-10-11 17:29:07
合計ジャッジ時間 38,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
20,796 KB
testcase_01 AC 8 ms
15,700 KB
testcase_02 AC 126 ms
34,596 KB
testcase_03 AC 846 ms
209,644 KB
testcase_04 AC 264 ms
72,352 KB
testcase_05 AC 104 ms
36,148 KB
testcase_06 AC 23 ms
18,432 KB
testcase_07 AC 548 ms
141,480 KB
testcase_08 AC 116 ms
36,108 KB
testcase_09 AC 89 ms
32,384 KB
testcase_10 AC 962 ms
217,984 KB
testcase_11 AC 38 ms
21,092 KB
testcase_12 AC 1,048 ms
240,600 KB
testcase_13 AC 556 ms
122,872 KB
testcase_14 AC 316 ms
66,556 KB
testcase_15 AC 850 ms
197,556 KB
testcase_16 AC 1,064 ms
256,392 KB
testcase_17 AC 1,169 ms
286,200 KB
testcase_18 AC 986 ms
231,548 KB
testcase_19 AC 320 ms
69,728 KB
testcase_20 AC 403 ms
89,900 KB
testcase_21 AC 712 ms
155,948 KB
testcase_22 AC 254 ms
63,612 KB
testcase_23 AC 1,182 ms
271,104 KB
testcase_24 AC 234 ms
57,652 KB
testcase_25 AC 438 ms
93,888 KB
testcase_26 AC 189 ms
40,960 KB
testcase_27 AC 462 ms
104,328 KB
testcase_28 AC 274 ms
59,136 KB
testcase_29 AC 237 ms
47,612 KB
testcase_30 AC 311 ms
62,848 KB
testcase_31 AC 277 ms
59,508 KB
testcase_32 AC 259 ms
47,360 KB
testcase_33 AC 218 ms
43,112 KB
testcase_34 AC 181 ms
39,040 KB
testcase_35 AC 242 ms
49,980 KB
testcase_36 AC 148 ms
25,832 KB
testcase_37 AC 132 ms
22,656 KB
testcase_38 AC 151 ms
28,456 KB
testcase_39 AC 190 ms
35,284 KB
testcase_40 AC 120 ms
24,760 KB
testcase_41 AC 137 ms
23,424 KB
testcase_42 AC 114 ms
22,656 KB
testcase_43 AC 136 ms
23,520 KB
testcase_44 AC 63 ms
17,680 KB
testcase_45 AC 137 ms
19,456 KB
testcase_46 AC 108 ms
19,712 KB
testcase_47 AC 122 ms
21,120 KB
testcase_48 AC 72 ms
17,408 KB
testcase_49 AC 105 ms
18,048 KB
testcase_50 AC 65 ms
16,896 KB
testcase_51 AC 98 ms
18,688 KB
testcase_52 AC 85 ms
17,664 KB
testcase_53 MLE -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
testcase_100 -- -
testcase_101 -- -
testcase_102 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	random_device seed_gen;
	mt19937 engine(seed_gen());

	int n; cin >> n;
	vector<int> a(n);
	rep(i,0,n) cin >> a[i];

	if (n <= 10){
		vector<int> p(n);
		iota(p.begin(),p.end(),1);
		vector mem(1<<19,vector<int>(0));
		do{
			int r=0;
			rep(i,0,n)r^=a[i]+p[i];
			if(mem[r].size()>0){
				rep(i,0,n){
					cout << mem[r][i] << ' ';
				}
				cout << '\n';
				rep(i,0,n){
					cout << p[i] << ' ';
				}
				cout << '\n';
				return 0;
			}
			mem[r] = p;
		}while(next_permutation(p.begin(),p.end()));
		cout << -1 << '\n';
	}else{
		vector mem(1<<19,vector<int>(0));
		vector<int> p(n);
		iota(p.begin(), p.end(), 1);
		while(true){
			shuffle(p.begin(),p.end(),engine);
			int r=0;
			rep(i,0,n)r^=a[i]+p[i];
			if(mem[r].size()>0){
				rep(i,0,n){
					cout << mem[r][i] << ' ';
				}
				cout << '\n';
				rep(i,0,n){
					cout << p[i] << ' ';
				}
				cout << '\n';
				return 0;
			}
			mem[r] = p;
		}
	}
}

0