結果

問題 No.647 明太子
ユーザー GBGB
提出日時 2018-11-09 04:42:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,640 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 70,468 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 04:03:11
合計ジャッジ時間 1,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 38 ms
6,944 KB
testcase_18 AC 39 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 22 ms
6,940 KB
testcase_23 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

struct Person{
	int price=0;
	int spice = 0;
};
struct Mentaiko
{
	int price = 0;
	int spice = 0;
};

int main() {

	//整数nの入力
	//データの入力
	//整数mの入力
	//データの入力
	//大きさmの配列countを用意

	//ループ開始
	  //ループ開始
		//i番目の金額以内かつ、i番目の辛さ以上であればカウントする
	  //0~mまで繰り返す
	//0~nまで繰り返す

	int n = 0, m = 0;
	vector<Person> array1;
	vector<Mentaiko> array2;
	cin >> n;
	for (int i = 0;i < n;i++) {
		Person buff;
		cin >> buff.price >> buff.spice;
		array1.push_back(buff);
	}
	cin >> m;
	for (int i = 0;i < m;i++) {
		Mentaiko buff;
		cin >> buff.price >> buff.spice;
		array2.push_back(buff);
	}
	vector<int> count(m, 0);

	for (int i = 0;i < n;i++) {
		for (int j = 0;j < m;j++) {
			if (array1[i].price >= array2[j].price && array1[i].spice <= array2[j].spice)count[j]++;
		}
	}

	vector<int>::iterator itr1= max_element(count.begin(), count.end());//最大値のイテレータ
	int maxvalue = *max_element(count.begin(), count.end());//最大値
	size_t maxIndex = distance(count.begin(), itr1);//最大値のインデックス
	vector<int> indexs;
	indexs.push_back(maxIndex);
	vector<int>::iterator itr2;

	while (true)
	{
		if (itr1 != count.end()-1 && *max_element(itr1+1, count.end()) == maxvalue) {
			itr2 = max_element(itr1+1, count.end());
			maxIndex = distance(count.begin(), itr2);
			indexs.push_back(maxIndex);
			itr1 = itr2;
		}
		else break;
	}

	for (int i : indexs) {
		cout << i+1<<endl;
	}


	return 0;
}
0