제출 #150272

#제출 시각아이디문제언어결과실행 시간메모리
150272Outfraware Boat People (#200)함수컵 박물관 (FXCUP4_museum)C++17
컴파일 에러
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(); }

컴파일 시 표준 에러 (stderr) 메시지

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