Compare commits
2 commits
94327119bb
...
cad8519840
Author | SHA1 | Date | |
---|---|---|---|
kaoplo | cad8519840 | ||
kaoplo | 306e46ccbf |
68
hf/hf5/1.cpp
Normal file
68
hf/hf5/1.cpp
Normal file
|
@ -0,0 +1,68 @@
|
|||
#include <bits/stdc++.h>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
|
||||
struct tanulok {
|
||||
int ev;
|
||||
int ho;
|
||||
int nap;
|
||||
int kezdes;
|
||||
int vegzes;
|
||||
};
|
||||
|
||||
int main() {
|
||||
|
||||
int n;
|
||||
cin >> n;
|
||||
|
||||
vector<tanulok> tan(n);
|
||||
|
||||
for (int i = 0; i < n; i++) {
|
||||
cin >> tan[i].ev >> tan[i].ho >> tan[i].nap >> tan[i].kezdes >> tan[i].vegzes;
|
||||
}
|
||||
|
||||
int max = 0;
|
||||
int maxI;
|
||||
bool tovabb = false;
|
||||
vector<int> a;
|
||||
for (int i = 0; i < n; i++) {
|
||||
if (max < tan[i].ev) {
|
||||
max = tan[i].ev;
|
||||
maxI = i;
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < n; i++) {
|
||||
if (max == tan[i].ev) {
|
||||
a.push_back(i);
|
||||
}
|
||||
}
|
||||
max = 0;
|
||||
// for (int i = 0; i < a.size(); i++) {
|
||||
// cout<<a[i]<<' ';
|
||||
// }
|
||||
//cout<<endl;
|
||||
vector<int> b;
|
||||
for (int i = 0; i < a.size(); i++) {
|
||||
if (max < tan[a[i]].ho) {
|
||||
max = tan[a[i]].ho;
|
||||
maxI = a[i];
|
||||
//cout<<"if fired "<< i<<' '<< a[i] <<' '<<tan[a[i]].ho<<endl;
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < n; i++) {
|
||||
if (max == tan[i].ho) {
|
||||
b.push_back(i);
|
||||
}
|
||||
}
|
||||
max =0;
|
||||
for (int i = 0; i < b.size(); i++) {
|
||||
if (max < tan[b[i]].nap) {
|
||||
max = tan[b[i]].nap;
|
||||
maxI = b[i];
|
||||
//cout<<"if fired "<< i<<' '<< a[i] <<' '<<tan[a[i]].ho<<endl;
|
||||
}
|
||||
}
|
||||
|
||||
cout << tan[maxI].ev << ' '<<tan[maxI].ho<<' '<<tan[maxI].nap;
|
||||
}
|
7
hf/hf5/2.cpp
Normal file
7
hf/hf5/2.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <bits/stdc++.h>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
|
||||
}
|
Loading…
Reference in a new issue