Submission #150272

#TimeUsernameProblemLanguageResultExecution timeMemory
150272Outfraware Boat People (#200)FunctionCup Museum (FXCUP4_museum)C++17
Compilation error
0 ms0 KiB
#include "museum.h" typedef std::pair<int, int> PII typedef std::set<PII> SETPAIR long long CountSimilarPairs(std::vector<int> B, std::vector<int> T, std::vector<int> G) { int N = B.size(); long long count = 0; SETPAIR set_pair; for (int i = 0; i < N; ++i) { for (int j = i + 1; j < N; ++j) { if (B[i] == B[j]) { set_pair.insert(PII(i, j)); } if (T[i] == T[j]) { set_pair.insert(PII(i, j)); } if (G[i] == G[j]) { set_pair.insert(PII(i, j)); } } } return set_pair.count(); }

Compilation message (stderr)

museum.cpp:4:1: error: expected initializer before 'typedef'
 typedef std::set<PII> SETPAIR
 ^~~~~~~