結果

問題 No.1017 Reiwa Sequence
ユーザー kotatsugamekotatsugame
提出日時 2020-04-03 22:49:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 72,320 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-07-03 05:17:23
合計ジャッジ時間 32,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
56,192 KB
testcase_01 AC 21 ms
56,192 KB
testcase_02 AC 20 ms
56,064 KB
testcase_03 AC 20 ms
56,320 KB
testcase_04 AC 20 ms
56,192 KB
testcase_05 AC 20 ms
56,192 KB
testcase_06 AC 21 ms
56,192 KB
testcase_07 AC 20 ms
56,064 KB
testcase_08 AC 39 ms
56,192 KB
testcase_09 AC 20 ms
56,064 KB
testcase_10 AC 21 ms
56,192 KB
testcase_11 AC 20 ms
56,064 KB
testcase_12 AC 23 ms
56,576 KB
testcase_13 AC 20 ms
56,192 KB
testcase_14 AC 20 ms
56,192 KB
testcase_15 AC 20 ms
56,320 KB
testcase_16 AC 20 ms
56,192 KB
testcase_17 AC 22 ms
56,704 KB
testcase_18 AC 20 ms
56,064 KB
testcase_19 AC 142 ms
82,816 KB
testcase_20 AC 128 ms
82,816 KB
testcase_21 AC 147 ms
82,688 KB
testcase_22 AC 133 ms
82,816 KB
testcase_23 AC 126 ms
82,816 KB
testcase_24 AC 134 ms
82,816 KB
testcase_25 AC 129 ms
82,816 KB
testcase_26 AC 109 ms
82,816 KB
testcase_27 AC 57 ms
61,440 KB
testcase_28 AC 48 ms
62,720 KB
testcase_29 AC 35 ms
59,520 KB
testcase_30 AC 26 ms
57,344 KB
testcase_31 AC 31 ms
59,264 KB
testcase_32 AC 33 ms
59,136 KB
testcase_33 AC 22 ms
56,448 KB
testcase_34 AC 21 ms
56,064 KB
testcase_35 AC 20 ms
56,192 KB
testcase_36 AC 20 ms
56,192 KB
testcase_37 AC 20 ms
56,320 KB
testcase_38 AC 77 ms
68,992 KB
testcase_39 AC 25 ms
57,728 KB
testcase_40 AC 81 ms
69,376 KB
testcase_41 AC 69 ms
69,376 KB
testcase_42 AC 67 ms
68,608 KB
testcase_43 AC 70 ms
68,992 KB
testcase_44 AC 184 ms
95,744 KB
testcase_45 AC 69 ms
68,864 KB
testcase_46 AC 68 ms
68,708 KB
testcase_47 AC 67 ms
68,480 KB
testcase_48 AC 98 ms
60,288 KB
testcase_49 AC 102 ms
77,184 KB
testcase_50 AC 78 ms
58,128 KB
testcase_51 AC 22 ms
56,064 KB
testcase_52 AC 37 ms
62,336 KB
testcase_53 AC 137 ms
82,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:38:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   38 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
long A[150000];
long B[150000];
vector<int>ids[150001];
vector<int>c[1<<21];
vector<int>now;
bool dfs(int id,int sum)
{
	if(id==N)return false;
	if(dfs(id+1,sum))return true;
	sum+=A[id];
	now.push_back(id);
	if(sum<1<<21)
	{
		if(c[sum].empty())
		{
			c[sum]=now;
			if(dfs(id+1,sum))return true;
		}
		else
		{
			for(int i:c[sum])B[i]=1;
			for(int j:now)
			{
				if(B[j]==1)B[j]=0;
				else B[j]=-1;
			}
			for(int k=0;k<N;k++)B[k]*=A[k];
			return true;
		}
	}
	now.pop_back();
	return false;
}
main()
{
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		ids[A[i]].push_back(i);
	}
	for(int i=1;i<=150000;i++)
	{
		if(ids[i].size()>=2)
		{
			cout<<"Yes"<<endl;
			for(int k=0;k<N;k++)
			{
				if(ids[i][0]==k)cout<<i;
				else if(ids[i][1]==k)cout<<-i;
				else cout<<0;
				cout<<(k+1==N?"\n":" ");
			}
			return 0;
		}
	}
	if(dfs(0,0))
	{
		cout<<"Yes"<<endl;
		for(int k=0;k<N;k++)cout<<B[k]<<(k+1==N?"\n":" ");
	}
	else cout<<"No"<<endl;
}
0