제출 #976426

#제출 시각아이디문제언어결과실행 시간메모리
976426vjudge1별들과 삼각형 (IZhO11_triangle)C++98
컴파일 에러
0 ms0 KiB
#include <iostream>
#include <map>
#include <vector>
using namespace std;

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    int n;
    long long ans = 0;
    cin >> n;
    map<int, vector<int>> adjX;
    map<int, vector<int>> adjY;

    for (int i = 0, xi, yi; i < n; i++) {
        cin >> xi >> yi;
        adjX[xi].push_back(yi);
        adjY[yi].push_back(xi);
    }

    int numX;
    for (auto &[xi, adj] : adjX) {
        numX = adj.size() - 1;
        for (auto &yi : adj) {
            if (!adjY.contains(yi)) continue;
            ans += numX * (adjY[yi].size() - 1);
        }
    }
    cout << ans;
}

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

triangle.cpp: In function 'int main()':
triangle.cpp:21:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   21 |     for (auto &[xi, adj] : adjX) {
      |                ^
triangle.cpp:24:23: error: 'class std::map<int, std::vector<int> >' has no member named 'contains'
   24 |             if (!adjY.contains(yi)) continue;
      |                       ^~~~~~~~