Submission #737724

# Submission time Handle Problem Language Result Execution time Memory
737724 2023-05-07T15:31:12 Z snowman Cluedo (IOI10_cluedo) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include 'cluedo.h'
//Soltan Cristian
#define fri(a, b) for (int i = (a); i < (b); ++i)
#define frj(a, b) for(int j = a; j < b; j++)
#define frk(a, b) for(int k = a; k < b; k++)
#define frm(a, b, i) for(int i = b; i >= a; i--)
#define ll long long
#define all(x) x.begin(), x.end()
#define mod 1000000007
#define pb push_back
#define st first
#define nd second
#define sz(x) (ll)x.size()
#define rall(x) x.rbegin(), x.rend()
#define ct(x) cout << x
#define cts(x) cout << x << ' '
#define ctn(x) cout << x << '\n'
#define Y cout << "YES" << '\n'
#define N cout << "NO" << '\n'
using namespace std;
using vi = vector<int>;
using vl = vector<ll>;
using vs = vector<string>;
using vb = vector<bool>;
using ml = map<ll, ll>;
using vii = vector<vector<int>>;
using vll = vector<vector<ll>>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int dx[] = {-1, 0, 1, 0};
const int dy[] = {0, 1, 0, -1};
template <typename T>void read(T n, vector<T> &a){fri(0, n){cin >> a[i];}}
template<typename T>void print(T n, T m, vector<vector<T>> &dp){fri(0, n){ct('\n');frj(0, m){ct(setw(5));cts(dp[i][j]);}}}



const int mxa = 1e9 + 1;
// string __fname = "exclusiv";  
// ifstream in(__fname + ".in"); 
// ofstream out (__fname + ".out"); 
// #define cin in 
// #define cout out


void Solve(){
    int a = 1, b = 1, c = 1;
    int k = Theory(a, b, c)''
	while(k){
        if(k == 1){
            a++;
        }
        else if(k == 2){
            b++;
        }
        else c++;
    }
    return;
}

Compilation message

cluedo.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
    2 | #include 'cluedo.h'
      |          ^~~~~~~~~~
cluedo.cpp:48:28: error: empty character constant
   48 |     int k = Theory(a, b, c)''
      |                            ^~
cluedo.cpp: In function 'void Solve()':
cluedo.cpp:48:13: error: 'Theory' was not declared in this scope
   48 |     int k = Theory(a, b, c)''
      |             ^~~~~~
cluedo.cpp:48:9: warning: unused variable 'k' [-Wunused-variable]
   48 |     int k = Theory(a, b, c)''
      |         ^