結果

問題 No.466 ジオラマ
ユーザー kotatsugamekotatsugame
提出日時 2016-12-21 15:24:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 09:28:33
合計ジャッジ時間 11,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 12 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 19 ms
5,376 KB
testcase_25 AC 20 ms
5,376 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 21 ms
5,376 KB
testcase_28 AC 16 ms
5,376 KB
testcase_29 AC 20 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 15 ms
5,376 KB
testcase_35 AC 14 ms
5,376 KB
testcase_36 WA -
testcase_37 AC 2 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 2 ms
5,376 KB
testcase_42 WA -
testcase_43 AC 2 ms
5,376 KB
testcase_44 WA -
testcase_45 AC 2 ms
5,376 KB
testcase_46 WA -
testcase_47 AC 2 ms
5,376 KB
testcase_48 WA -
testcase_49 AC 2 ms
5,376 KB
testcase_50 WA -
testcase_51 AC 2 ms
5,376 KB
testcase_52 WA -
testcase_53 AC 2 ms
5,376 KB
testcase_54 WA -
testcase_55 AC 2 ms
5,376 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 1 ms
5,376 KB
testcase_68 WA -
testcase_69 AC 2 ms
5,376 KB
testcase_70 WA -
testcase_71 AC 2 ms
5,376 KB
testcase_72 WA -
testcase_73 AC 2 ms
5,376 KB
testcase_74 WA -
testcase_75 AC 3 ms
5,376 KB
testcase_76 AC 2 ms
5,376 KB
testcase_77 AC 2 ms
5,376 KB
testcase_78 AC 2 ms
5,376 KB
testcase_79 AC 2 ms
5,376 KB
testcase_80 AC 2 ms
5,376 KB
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<utility>
using namespace std;

int main()
{
	int a,b,c,d;
	cin>>a>>b>>c>>d;
	if(a+b-c-1>d){cout<<-1<<endl;return 0;}
	cout<<a+b-c<<" "<<a+b-c-1<<endl;
	vector<pair<int,int>> ans;
	ans.push_back(make_pair(0,2));
	for(int i=2;i<a;i++)ans.push_back(make_pair(i,i+1));
	ans.push_back(make_pair(1,a+1));
	for(int i=a+1;i<a+b-c-1;i++)ans.push_back(make_pair(i,i+1));
	if(c)ans.push_back(make_pair(a+b-c-1,a-c+1));
	for(auto i:ans)cout<<i.first<<" "<<i.second<<endl;
	return 0;
}
0