QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#605382 | #9320. Find the Easiest Problem | pkq911 | WA | 0ms | 3532kb | C++17 | 1.6kb | 2024-10-02 16:55:51 | 2024-10-02 16:55:53 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define all(a) a.begin(), a.end()
#define fi first
#define se second
#define inf 0x3f3f3f3f
#define endl '\n'
using namespace std;
int dx[8] = {0, 1, 0, -1, 1, 1, -1, -1};
int dy[8] = {1, 0, -1, 0, 1, -1, -1, 1};
template <typename T>
void MAX(T &a, T b) { a = max(a, b); }
template <typename T>
void MIN(T &a, T b) { a = min(a, b); }
template <typename T>
T lowbit(T x) { return x & -x; }
template <typename T>
int getlen(T x)
{
int res = 0;
while (x)
{
++res, x /= 10;
}
return res;
}
inline int read()
{
int x = 0, f = 1;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-')
f = -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
x = x * 10 + ch - 48;
ch = getchar();
}
return x * f;
}
void solve()
{
int n;
cin >> n;
map<string, vector<string>> a;
while (n--)
{
string name, id, op;
cin >> name >> id >> op;
if (op[0] == 'a')
{
a[id].push_back(name);
}
}
string mx = "";
for (auto &[k, vec] : a)
{
sort(vec.begin(), vec.end());
vec.erase(unique(vec.begin(), vec.end()), vec.end());
if (a[mx].size() < a[k].size())
{
mx = k;
}
}
cout << mx << endl;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T = 1;
// cin >> T;
while (T--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3532kb
input:
2 5 teamA A accepted teamB B rejected teamC A accepted teamB B accepted teamD C accepted 4 teamA A rejected teamB A accepted teamC B accepted teamC B accepted
output:
result:
wrong answer 1st lines differ - expected: 'A', found: ''