結果

問題 No.1530 Permutation and Popcount
ユーザー inksamuraiinksamurai
提出日時 2021-06-05 05:29:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 2,155 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 106,460 KB
実行使用メモリ 72,924 KB
最終ジャッジ日時 2024-11-24 20:38:59
合計ジャッジ時間 4,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,528 KB
testcase_01 AC 4 ms
9,572 KB
testcase_02 AC 7 ms
19,808 KB
testcase_03 AC 3 ms
7,532 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
7,528 KB
testcase_06 AC 4 ms
9,572 KB
testcase_07 AC 4 ms
9,576 KB
testcase_08 AC 3 ms
7,524 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 10 ms
21,988 KB
testcase_11 AC 66 ms
38,496 KB
testcase_12 AC 92 ms
72,924 KB
testcase_13 AC 15 ms
20,200 KB
testcase_14 AC 66 ms
41,960 KB
testcase_15 AC 35 ms
23,524 KB
testcase_16 AC 15 ms
20,192 KB
testcase_17 AC 75 ms
35,072 KB
testcase_18 AC 58 ms
18,048 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 69 ms
30,336 KB
testcase_22 AC 78 ms
36,992 KB
testcase_23 AC 69 ms
29,696 KB
testcase_24 AC 14 ms
5,248 KB
testcase_25 AC 63 ms
23,680 KB
testcase_26 AC 25 ms
5,248 KB
testcase_27 AC 93 ms
58,368 KB
testcase_28 AC 77 ms
38,016 KB
testcase_29 AC 30 ms
6,144 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 94 ms
64,256 KB
testcase_32 AC 95 ms
64,256 KB
testcase_33 AC 94 ms
64,128 KB
testcase_34 AC 95 ms
64,256 KB
testcase_35 AC 96 ms
64,128 KB
testcase_36 AC 95 ms
64,256 KB
testcase_37 AC 97 ms
64,256 KB
testcase_38 AC 98 ms
64,128 KB
testcase_39 AC 96 ms
63,104 KB
testcase_40 AC 93 ms
62,976 KB
testcase_41 AC 94 ms
63,104 KB
testcase_42 AC 94 ms
63,744 KB
testcase_43 AC 78 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <deque>
#include <list>
#include <tuple>
#include <algorithm>
#include <iterator>
#include <map>
#include <queue>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <stack>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <numeric>
#include <iomanip> 
#include <stdio.h>
#include <functional>
//eolibraries
#define lnf 3999999999999999999
#define inf 999999999
#define PI 3.14159265359
#define endl "\n"
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define ll long long
#define all(c) (c).begin(),(c).end()
#define sz(c) (int)(c).size()
#define mkp(a,b) make_pair(a,b)
#define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end())
#define rsz(a,n) a.resize(n)
#define pii pair <int,int>
#define rep(i,n) for(int i = 0 ; i < n ; i++) 
#define drep(i,n) for(int i = n-1 ; i >= 0 ; i--)
#define crep(i,x,n) for(int i = x ; i < n ; i++)
#define vi vector <int> 
#define vec(s) vector<s>
#define rsz(a,n) a.resize(n)
#define rszv(a,n,v) a.resize(n,v)
#define fcin ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0);
//eodefine
 
const int max_n = 200000;
 
using namespace std;

// int f(vi a) {
// 	int cnt=0;
// 	rep(i,sz(a)) {
// 		rep(j,sz(a)) {
// 			int c=__builtin_popcount(a[i]*a[j]);
// 			if(c%2==0) cnt++;
// 		}
// 	}
// 	return cnt;
// }

int n,m;
int dp[301][max_n];
int val[301];

int main(){
fcin;
	cin>>n>>m;
	
	const int zro=max_n/2;

	dp[0][zro]=1;
	
	crep(a,1,n+1) {
		crep(b,1,n+1){
			int c=__builtin_popcount(a*b);
			if(c%2==0) val[a]++;
		}

		rep(j,max_n) {
			if(dp[a-1][j]) { dp[a][j+val[a]]=1; dp[a][j-val[a]]=1; }
		}
	}

	if(!dp[n][m+zro]) {cout<<"-1\n"; exit(0);}
 	
 	vi ansx , ansy;

 	int nwval = m+zro;
 
 	while(n>0) {
		if(nwval-val[n]>=0 and dp[n-1][nwval-val[n]] == 1) {ansx.pb(n); nwval -= val[n];}
		else if(nwval+val[n]<max_n and dp[n-1][nwval+val[n]] == 1) {ansy.pb(n); nwval += val[n];}
 		n--;
 	}
 	// cout << f(ansx) << "\n";
 	cout << sz(ansx) << " " << sz(ansy) << "\n";
 	for(auto x : ansx)cout<<x<<" ";
 	cout<<"\n";
 	for(auto x : ansy)cout<<x<<" ";

/*
*/
 
    return 0;   
}
0