Submission #866053

# Submission time Handle Problem Language Result Execution time Memory
866053 2023-10-25T10:49:11 Z ElenaBM Cluedo (IOI10_cluedo) C++17
Compilation error
0 ms 0 KB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>

using namespace std;
vector<int>a, b, c;
void Solve (){
    a.clear();
    b.clear();
    c.clear();
    for (int i  = 1; i <= 6; ++i){
        a.push_back(i);
        c.push_back(i);
    }
    for (int i = 1; i <= 10; ++i)b.push_back(i);
    int x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
    while (x != 0){
        if (x == 1) a.pop_back();
        if (x== 2) b.pop_back();
        else c.pop_back();
        x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
    }
}

Compilation message

cluedo.cpp: In function 'void Solve()':
cluedo.cpp:16:80: error: expected ']' before ')' token
   16 |     int x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
      |                                                                                ^
      |                                                                                ]
cluedo.cpp:16:81: error: expected ',' or ';' before ']' token
   16 |     int x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
      |                                                                                 ^
cluedo.cpp:21:80: error: expected ']' before ')' token
   21 |         x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
      |                                                                                ^
      |                                                                                ]
cluedo.cpp:21:81: error: expected ';' before ']' token
   21 |         x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1)]);
      |                                                                                 ^
      |                                                                                 ;