Submission #485481

# Submission time Handle Problem Language Result Execution time Memory
485481 2021-11-08T01:32:57 Z PedroBigMan Toy Train (IOI17_train) C++14
Compilation error
0 ms 0 KB
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <queue>
#include <deque>
#include <list>
#include "train.h"
using namespace std;
typedef int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define REP(i,a,b) for(ll i=(ll)a; i<(ll)b; i++)
#define pb push_back
#define mp make_pair
#define pl pair<ll,ll>
#define ff first
#define ss second
#define whole(x) x.begin(),x.end()
#define DEBUG(i) cout<<"Pedro Is The Master "<<i<<endl
#define INF 100000000000000000LL
ll insig;
#define In(vecBRO, LENBRO) REP(IBRO,0,LENBRO) {cin>>insig; vecBRO.pb(insig);}
void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}

vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) 
{
	ll cur=15LL; REP(i,0,14LL) {cur*=3LL;}
	ll dp[cur]; REP(i,0,dp.size()) {dp[i]=0;}
	vector<ll> ans; REP(i,0,a.size()) {ans.pb(0);} return ans;
}

Compilation message

train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:34:25: error: request for member 'size' in 'dp', which is of non-class type 'll [cur]' {aka 'int [cur]'}
   34 |  ll dp[cur]; REP(i,0,dp.size()) {dp[i]=0;}
      |                         ^~~~
train.cpp:18:42: note: in definition of macro 'REP'
   18 | #define REP(i,a,b) for(ll i=(ll)a; i<(ll)b; i++)
      |                                          ^