結果

問題 No.2247 01 ZigZag
ユーザー kotatsugamekotatsugame
提出日時 2023-03-17 22:13:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 958 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 76,168 KB
実行使用メモリ 5,264 KB
最終ジャッジ日時 2023-10-18 20:12:53
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 5 ms
4,852 KB
testcase_03 AC 8 ms
4,576 KB
testcase_04 AC 3 ms
4,348 KB
testcase_05 AC 6 ms
4,348 KB
testcase_06 AC 5 ms
4,348 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 AC 10 ms
4,348 KB
testcase_09 AC 9 ms
4,576 KB
testcase_10 AC 4 ms
4,348 KB
testcase_11 AC 6 ms
4,348 KB
testcase_12 AC 7 ms
4,348 KB
testcase_13 AC 5 ms
4,348 KB
testcase_14 AC 3 ms
4,348 KB
testcase_15 AC 7 ms
4,348 KB
testcase_16 AC 10 ms
4,348 KB
testcase_17 AC 11 ms
4,840 KB
testcase_18 AC 5 ms
4,852 KB
testcase_19 AC 5 ms
5,116 KB
testcase_20 AC 4 ms
4,348 KB
testcase_21 AC 3 ms
4,348 KB
testcase_22 AC 11 ms
4,348 KB
testcase_23 AC 5 ms
4,348 KB
testcase_24 AC 5 ms
4,852 KB
testcase_25 AC 10 ms
4,348 KB
testcase_26 AC 9 ms
4,348 KB
testcase_27 AC 7 ms
4,348 KB
testcase_28 AC 12 ms
4,576 KB
testcase_29 AC 10 ms
4,840 KB
testcase_30 AC 12 ms
4,576 KB
testcase_31 AC 3 ms
4,348 KB
testcase_32 AC 12 ms
5,264 KB
testcase_33 AC 8 ms
4,516 KB
testcase_34 AC 7 ms
4,348 KB
testcase_35 AC 5 ms
4,348 KB
testcase_36 AC 8 ms
4,608 KB
testcase_37 AC 4 ms
4,348 KB
testcase_38 AC 4 ms
4,348 KB
testcase_39 AC 6 ms
4,508 KB
testcase_40 AC 5 ms
5,116 KB
testcase_41 AC 2 ms
4,348 KB
testcase_42 AC 2 ms
4,348 KB
testcase_43 AC 2 ms
4,348 KB
testcase_44 AC 2 ms
4,348 KB
testcase_45 AC 15 ms
4,840 KB
testcase_46 AC 15 ms
4,840 KB
testcase_47 AC 2 ms
4,348 KB
testcase_48 AC 2 ms
4,348 KB
testcase_49 AC 2 ms
4,348 KB
testcase_50 AC 2 ms
4,348 KB
testcase_51 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N,M,K;
int main()
{
	cin>>N>>M>>K;
	if(K==0)
	{
		if(N==0)cout<<string(M,'1')<<endl;
		else if(M==0)cout<<string(N,'0')<<endl;
		else cout<<-1<<endl;
		return 0;
	}
	if(N==0||M==0)
	{
		cout<<-1<<endl;
		return 0;
	}
	vector<pair<int,int> >ans;
	for(int t=0;t<2;t++)
	{
		vector<pair<int,int> >now;
		now.push_back(make_pair(t,1));
		int n=N,m=M;
		if(t==0)n--;
		else m--;
		for(int k=0;k<K;k++)
		{
			int v=now.back().first;
			v=1-v;
			now.push_back(make_pair(v,1));
			if(v==0)n--;
			else m--;
		}
		if(n<0||m<0)continue;
		//0
		if(n>0)
		{
			int id=0;
			while(now[id].first!=0)id++;
			now[id].second+=n;
		}
		//1
		if(m>0)
		{
			int id=(int)now.size()-1;
			while(now[id].first!=1)id--;
			now[id].second+=m;
		}
		ans=now;
		break;
	}
	if(ans.empty())cout<<-1<<endl;
	else
	{
		for(pair<int,int>p:ans)for(int i=0;i<p.second;i++)cout<<p.first;
		cout<<endl;
	}
}
0