結果
問題 | No.647 明太子 |
ユーザー | GB |
提出日時 | 2018-11-09 04:47:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 44 ms / 4,500 ms |
コード長 | 1,698 bytes |
コンパイル時間 | 629 ms |
コンパイル使用メモリ | 69,644 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-01 04:03:14 |
合計ジャッジ時間 | 1,576 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 34 ms
6,940 KB |
testcase_15 | AC | 6 ms
6,940 KB |
testcase_16 | AC | 3 ms
6,940 KB |
testcase_17 | AC | 42 ms
6,940 KB |
testcase_18 | AC | 44 ms
6,940 KB |
testcase_19 | AC | 8 ms
6,940 KB |
testcase_20 | AC | 8 ms
6,940 KB |
testcase_21 | AC | 4 ms
6,940 KB |
testcase_22 | AC | 25 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
ソースコード
#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());//最大値 if (maxvalue == 0) { cout << 0 << endl; return 0; } 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; }