結果

問題 No.1530 Permutation and Popcount
ユーザー penguinmanpenguinman
提出日時 2021-06-03 06:42:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 2,207 bytes
コンパイル時間 7,589 ms
コンパイル使用メモリ 337,040 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-05-03 17:32:58
合計ジャッジ時間 10,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 2 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 27 ms
5,376 KB
testcase_12 AC 71 ms
9,216 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 30 ms
5,888 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 43 ms
6,912 KB
testcase_18 AC 20 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 36 ms
6,400 KB
testcase_22 AC 49 ms
7,168 KB
testcase_23 AC 38 ms
6,144 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 30 ms
5,632 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 76 ms
9,472 KB
testcase_28 AC 46 ms
7,168 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 83 ms
9,984 KB
testcase_32 AC 82 ms
10,112 KB
testcase_33 AC 82 ms
10,112 KB
testcase_34 AC 82 ms
10,112 KB
testcase_35 AC 85 ms
10,112 KB
testcase_36 AC 82 ms
10,112 KB
testcase_37 AC 82 ms
10,240 KB
testcase_38 AC 84 ms
10,112 KB
testcase_39 AC 84 ms
9,856 KB
testcase_40 AC 79 ms
9,984 KB
testcase_41 AC 78 ms
9,984 KB
testcase_42 AC 81 ms
10,112 KB
testcase_43 AC 50 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include "testlib.h"
//using namespace std;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#define rep(i, j, n) for(ll i = ll(j); i < ll(n); i++)
#define REP(i, j, n) for(ll i = ll(j); i <= ll(n); i++)
#define per(i, j, n) for(ll i = ll(j); ll(n) <= i; i--)
#define ALL(a) (a).begin(),(a).end()
#define revALL(a) (a).rbegin(),(a).rend()
#define pb emplace_back
#define mp std::make_pair
#define mtp std::make_tuple
#define ln "\n"
using std::endl;
using std::cin;
using std::cout;
using ll = long long;
using lint = __int128;
using std::vector;
using std::string;
using std::upper_bound;
using std::lower_bound;
using vi = vector<ll>;
using vii = vector<vi>;
using pii = std::pair<ll, ll>;
using vs = vector<int>;
using vss = vector<vs>;
using pss = std::pair<int, int>;
using vl = vector<lint>;
using vll = vector<vl>;
using pll = std::pair<lint, lint>;

//main
int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::random_device rnd;
    std::mt19937 mt(rnd());
    registerValidation();
    ll N,M;
    N = inf.readInt(1,300,"N");
    inf.readSpace();
    M = inf.readInt(0,N*N,"M");
    inf.readEoln();
    vi cnt(N+1);
    REP(i,1,N){
        REP(j,1,N){
            if(__builtin_popcount(i*j)%2 == 0) cnt[i]++;
        }
    }
    vector<vector<bool>> dp(N+1,vector<bool>(2*N*N+1));
    dp[0][N*N] = true;
    REP(i,1,N){
        REP(j,0,2*N*N){
            if(!dp[i-1][j]) continue;
            if(cnt[i] <= j) dp[i][j-cnt[i]] = true;
            if(j+cnt[i] <= 2*N*N) dp[i][j+cnt[i]] = true;
        }
    }
    M += N*N;
    if(dp[N][M]){
        vi P,Q;
        per(i,N,1){
            if(M+cnt[i]<=2*N*N && dp[i-1][M+cnt[i]]){
                Q.pb(i);
                M += cnt[i];
            }
            else{
                P.pb(i);
                M -= cnt[i];
            }
        }
        cout << P.size() << " " << Q.size() << ln;
        for(auto p:P) cout << p << ln;
        for(auto q:Q) cout << q << ln;
    }
    else{
        cout << -1 << ln;
    }
    inf.readEof();
}

0