結果

問題 No.2596 Christmas Eve (Heuristic ver.)
ユーザー anonymouslyanonymously
提出日時 2023-12-24 23:23:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,765 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 176,740 KB
実行使用メモリ 6,676 KB
スコア 0
最終ジャッジ日時 2023-12-24 23:23:36
合計ジャッジ時間 26,518 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 WA -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 WA -
testcase_34 RE -
testcase_35 WA -
testcase_36 WA -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 WA -
testcase_44 RE -
testcase_45 RE -
testcase_46 WA -
testcase_47 WA -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 WA -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 WA -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 WA -
testcase_84 WA -
testcase_85 RE -
testcase_86 RE -
testcase_87 RE -
testcase_88 RE -
testcase_89 RE -
testcase_90 RE -
testcase_91 RE -
testcase_92 RE -
testcase_93 RE -
testcase_94 RE -
testcase_95 RE -
testcase_96 RE -
testcase_97 RE -
testcase_98 RE -
testcase_99 RE -
testcase_100 RE -
testcase_101 RE -
testcase_102 RE -
testcase_103 RE -
testcase_104 WA -
testcase_105 RE -
testcase_106 RE -
testcase_107 WA -
testcase_108 RE -
testcase_109 RE -
testcase_110 RE -
testcase_111 RE -
testcase_112 RE -
testcase_113 RE -
testcase_114 RE -
testcase_115 RE -
testcase_116 RE -
testcase_117 RE -
testcase_118 RE -
testcase_119 RE -
testcase_120 RE -
testcase_121 RE -
testcase_122 WA -
testcase_123 RE -
testcase_124 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#define DEBUG

typedef struct wood{
	int id;
	int width;
	int height;
}wood;

bool compare(wood a, wood b){
	if(a.width!=b.width){
		return a.width<b.width;
	}else{
		return a.id<b.id;
	}
}

/*
 * とりあえずACを取得する為の解答
 */
int main(){
	int n,k;
	cin >> n >> k;
	
	//高さの合計
	int sum=0;
	
	//「木の先端」
	vector<wood> wooden_head(n);
	
	//「木の先端」の幅
	for(int i=0;i<n;i++){
		wooden_head[i].id=i+1;
		cin >> wooden_head[i].width;
	}
	
	//「木の先端」の高さ
	for(int i=0;i<n;i++){
		cin >> wooden_head[i].height;
		sum+=wooden_head[i].height;
	}
	
	//ソート
	sort(wooden_head.begin(),wooden_head.end(),compare);
	
	//「木の中央」
	vector<wood> wooden_central(2*n);
	
	//「木の中央」の幅
	for(int i=0;i<2*n;i++){
		wooden_central[i].id=i+1;
		cin >> wooden_central[i].width;
	}
	
	//「木の中央」の高さ
	for(int i=0;i<2*n;i++){
		cin >> wooden_central[i].height;
		sum+=wooden_central[i].height;
	}
	
	//ソート
	sort(wooden_central.begin(),wooden_central.end(),compare);
	
	//「木の幹」
	vector<wood> wooden_trunk(n);
	
	//「木の幹」の幅
	for(int i=0;i<n;i++){
		wooden_trunk[i].id=i+1;
		cin >> wooden_trunk[i].width;
	}
	
	//「木の幹」の高さ
	for(int i=0;i<n;i++){
		cin >> wooden_trunk[i].height;
		sum+=wooden_trunk[i].height;
	}

	//ソート
	sort(wooden_trunk.begin(),wooden_trunk.end(),compare);
	
	//木の高さの平均
	int avg=(sum+n/2)/n;
	
#ifdef DEBUG
	for(wood w:wooden_head){
		cout << w.id << ' ';
	}
	cout << endl;
	for(wood w:wooden_central){
		cout << w.id << ' ';
	}
	cout << endl;
	for(wood w:wooden_trunk){
		cout << w.id << ' ';
	}
	cout << endl;
#endif
	
	vector<vector<wood>> woods(k,vector<wood>(4));
	//幹は幅小⇒大、中央は幅大⇒小に確定させていく
	int j=0;
	while(j<k){
		woods[j][3]=wooden_trunk[j];
		j++;
		woods[k-j][2]=wooden_central[2*(n-j)+1];
		woods[k-j][1]=wooden_central[2*(n-j)];
	}
	
	//先端を決める
	j=0;
	while(j<k){
		//中央2個と幹の高さ
		int height=0;
		for(int _=1;_<4;_++)height+=woods[j][_].height;

		//先端探索開始位置
		int c=(j?woods[j-1][0].id:0);
		while(wooden_head[c].width<=woods[j][3].width){//先端の幅>幹の幅になるまでループ
			c++;
		}

		//暫定
		woods[j][0]=wooden_head[c];
		
		while(wooden_head[++c].width<woods[j][1].width){//先端の幅<中央の幅の間ループ
			if(abs(height+wooden_head[c].height-avg)<abs(height+woods[j][0].height-avg)){//高さの合計が平均に近ければ
				woods[j][0]=wooden_head[c];
			}
		}
		j++;
	}

	j=0;
	while(j<k){
		for(int _=0;_<4;_++){
			if(_)cout << ' ';
			cout << woods[j][_].id;
		}
		cout << endl;
		j++;
	}
	
	return 0;
}
0