結果

問題 No.1900 Don't be Powers of 2
ユーザー publflpublfl
提出日時 2022-04-08 22:58:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,008 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 67,580 KB
実行使用メモリ 16,712 KB
最終ジャッジ日時 2024-11-28 13:57:43
合計ジャッジ時間 110,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,192 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2 ms
10,496 KB
testcase_32 AC 2 ms
8,192 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 31 ms
10,496 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <atcoder/maxflow>

std::vector<int> V[2010];
int color[2010];
void init(int k, int col)
{
	if(color[k]) return;
	color[k] = col;
	for(int i=0;i<V[k].size();i++) init(V[k][i],3-col);
}

std::vector< std::pair<int,int> > edge;
int x[2010];
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	
	for(int i=1;i<=a;i++)
	{
		for(int j=i+1;j<=a;j++)
		{
			int val = (x[i]^x[j]);
			while(val%2==0) val/=2;
			if(val==1)
			{
				V[i].push_back(j);
				V[j].push_back(i);
				edge.push_back(std::make_pair(i,j));
			}
		}
	}
	for(int i=1;i<=a;i++) init(i,1);
	
	atcoder::mf_graph<int> G(2*a+3);
	int source = 2*a+1, sink = 2*a+2;
	
	for(int i=1;i<=a;i++) G.add_edge(source,i,1);
	for(int i=1;i<=a;i++) G.add_edge(i+a,sink,1);
	
	for(int i=0;i<edge.size();i++)
	{
		int s = edge[i].first, t = edge[i].second;
		if(color[s]==2)
		{
			int temp = s;
			s = t;
			t = temp;
		}
		G.add_edge(s,a+t,1);
	}
	
	printf("%d",a-G.flow(source,sink));
}
0