結果

問題 No.2732 Similar Permutations
ユーザー t98slidert98slider
提出日時 2024-05-05 11:26:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 819 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 206,860 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-05-05 11:27:11
合計ジャッジ時間 25,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 6 ms
6,944 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 RE -
testcase_11 AC 6 ms
6,944 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 29 ms
6,944 KB
testcase_18 RE -
testcase_19 AC 41 ms
6,944 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 25 ms
6,944 KB
testcase_23 AC 46 ms
6,944 KB
testcase_24 RE -
testcase_25 AC 42 ms
6,944 KB
testcase_26 RE -
testcase_27 AC 45 ms
7,040 KB
testcase_28 AC 36 ms
6,968 KB
testcase_29 AC 40 ms
7,040 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 41 ms
6,944 KB
testcase_33 AC 46 ms
7,040 KB
testcase_34 AC 29 ms
6,944 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 43 ms
6,940 KB
testcase_38 AC 39 ms
6,944 KB
testcase_39 AC 39 ms
7,040 KB
testcase_40 AC 34 ms
7,040 KB
testcase_41 AC 42 ms
7,040 KB
testcase_42 AC 31 ms
6,944 KB
testcase_43 AC 39 ms
7,096 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 40 ms
7,168 KB
testcase_50 AC 26 ms
6,944 KB
testcase_51 AC 40 ms
6,952 KB
testcase_52 AC 33 ms
7,028 KB
testcase_53 RE -
testcase_54 AC 45 ms
6,944 KB
testcase_55 AC 41 ms
6,944 KB
testcase_56 AC 41 ms
7,040 KB
testcase_57 AC 21 ms
6,944 KB
testcase_58 AC 28 ms
6,944 KB
testcase_59 AC 28 ms
6,944 KB
testcase_60 AC 25 ms
6,940 KB
testcase_61 RE -
testcase_62 AC 39 ms
6,944 KB
testcase_63 RE -
testcase_64 AC 3 ms
6,940 KB
testcase_65 RE -
testcase_66 AC 3 ms
6,940 KB
testcase_67 AC 3 ms
6,940 KB
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 AC 3 ms
6,940 KB
testcase_74 RE -
testcase_75 AC 3 ms
6,944 KB
testcase_76 RE -
testcase_77 AC 3 ms
6,944 KB
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 AC 4 ms
6,940 KB
testcase_82 RE -
testcase_83 AC 3 ms
6,940 KB
testcase_84 AC 3 ms
6,944 KB
testcase_85 RE -
testcase_86 AC 3 ms
6,944 KB
testcase_87 AC 3 ms
6,944 KB
testcase_88 RE -
testcase_89 AC 3 ms
6,940 KB
testcase_90 RE -
testcase_91 AC 3 ms
6,944 KB
testcase_92 AC 3 ms
6,940 KB
testcase_93 AC 3 ms
6,940 KB
testcase_94 RE -
testcase_95 RE -
testcase_96 AC 3 ms
6,944 KB
testcase_97 RE -
testcase_98 AC 4 ms
6,944 KB
testcase_99 RE -
testcase_100 RE -
testcase_101 AC 4 ms
6,940 KB
testcase_102 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    int c = min(n, 9);
    vector<int> a(n), p(c);
    for(auto &&v : a) cin >> v;
    iota(p.begin(), p.end(), 1);
    vector<vector<int>> tb(1 << __lg(200010));
    do{
        int v = 0;
        for(int i = 0; i < c; i++){
            v ^= a[i] + p[i];
        }
        if(!tb[v].empty()){
            for(int i = 0; i < n; i++){
                cout << (i < c ? tb[v][i] : i + 1) << (i + 1 == n ? '\n' : ' ');
            }
            for(int i = 0; i < n; i++){
                cout << (i < c ? p[i] : i + 1) << (i + 1 == n ? '\n' : ' ');
            }
            return 0;
        }
        tb[v] = p;
    }while(next_permutation(p.begin(), p.end()));
    cout << -1 << '\n';
}
0