Submission #349635

#TimeUsernameProblemLanguageResultExecution timeMemory
349635my99nStar triangles (IZhO11_triangle)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; int x[300100], y[300100]; map<int,long long> mx, my; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; for (int i = 0; i < n; i++) { cin >> x[i] >> y[i]; mx[x[i]++; my[y[i]]++; } long long ans; for (int i = 0; i < n; i++) ans+=(mx[x[i]]-1)*(my[y[i]]-1) cout << ans; return 0; }

Compilation message (stderr)

triangle.cpp: In function 'int main()':
triangle.cpp:12:14: error: expected ']' before ';' token
   12 |     mx[x[i]++; my[y[i]]++;
      |              ^
      |              ]
triangle.cpp:15:61: error: expected ';' before 'cout'
   15 |   for (int i = 0; i < n; i++) ans+=(mx[x[i]]-1)*(my[y[i]]-1)
      |                                                             ^
      |                                                             ;
   16 |   cout << ans;
      |   ~~~~