結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー RubikunRubikun
提出日時 2024-07-11 01:54:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,894 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 208,824 KB
実行使用メモリ 6,512 KB
最終ジャッジ日時 2024-07-11 01:54:34
合計ジャッジ時間 8,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 43 ms
5,376 KB
testcase_16 AC 49 ms
5,492 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 50 ms
5,452 KB
testcase_19 AC 42 ms
5,488 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 49 ms
6,000 KB
testcase_22 AC 36 ms
5,488 KB
testcase_23 AC 32 ms
5,376 KB
testcase_24 AC 27 ms
5,376 KB
testcase_25 AC 50 ms
5,616 KB
testcase_26 AC 51 ms
6,384 KB
testcase_27 AC 50 ms
5,744 KB
testcase_28 AC 51 ms
5,876 KB
testcase_29 AC 51 ms
5,740 KB
testcase_30 AC 51 ms
6,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    vector<vector<int>> def={{2,4,9,11},{5,8,6,7},{1,3,10,12}};
    
    int N;cin>>N;
    vector<vector<int>> ans(3);
    if(N==1) cout<<-1<<endl;
    else if(N%4==0){
        for(int q=0;q<N/4;q++){
            for(int i=0;i<3;i++){
                for(int x:def[i]){
                    ans[i].push_back(x+q*12);
                }
            }
        }
    }else if(N%4==1){
        ans[0]={1,4,6,13,15};
        ans[1]={2,8,9,10,11};
        ans[2]={3,5,7,12,14};
        for(int q=0;q<N/4-1;q++){
            for(int i=0;i<3;i++){
                for(int x:def[i]){
                    ans[i].push_back(x+q*12+15);
                }
            }
        }
    }else if(N%4==2){
        ans[0]={5,3};
        ans[1]={4,2};
        ans[2]={6,1};
        for(int q=0;q<N/4;q++){
            for(int i=0;i<3;i++){
                for(int x:def[i]){
                    ans[i].push_back(x+q*12+6);
                }
            }
        }
    }else if(N%4==3){
        ans[0]={1,2,8};
        ans[1]={3,6,9};
        ans[2]={7,5,4};
        for(int q=0;q<N/4;q++){
            for(int i=0;i<3;i++){
                for(int x:def[i]){
                    ans[i].push_back(x+q*12+9);
                }
            }
        }
    }
    
    for(int i=0;i<3;i++){
        for(int x:ans[i]) cout<<x<<" ";
    }
    cout<<"\n";
}

0