Submission #863770

# Submission time Handle Problem Language Result Execution time Memory
863770 2023-10-21T02:58:43 Z Trisanu_Das Olympiads (BOI19_olympiads) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
 
int main(){
  int n, m, k; cin >> n >> m >> k;
  int a[n][m];
  for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) cin >> a[i][j];
  vector<int> b;
  for(int i = 0; i < n; i++) for(int j = i + 1; j < n; j++) b.push_back(max(a[i][0], a[i][1]]) + max(a[i][1], a[j][1]));
  sort(b.rbegin(), b.rend());
  cout << v[k - 1] << '\n';
}

Compilation message

olympiads.cpp: In function 'int main()':
olympiads.cpp:9:93: error: expected ')' before ']' token
    9 |   for(int i = 0; i < n; i++) for(int j = i + 1; j < n; j++) b.push_back(max(a[i][0], a[i][1]]) + max(a[i][1], a[j][1]));
      |                                                                            ~                ^
      |                                                                                             )
olympiads.cpp:11:11: error: 'v' was not declared in this scope
   11 |   cout << v[k - 1] << '\n';
      |           ^