Submission #910766

#TimeUsernameProblemLanguageResultExecution timeMemory
910766tnunDigital Circuit (IOI22_circuit)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back int n,m,p[100060],a[100060]; void init(int N,int M, int []P,int []A){ n=N; m=M; for(int i=0;i<N+M;i++){ p[i]=P[i]; } for(int i=0;i<M;i++){ a[i]=A[i]; } } int count_ways(int l,int r){ for(int i=l-1;i<r;i++){ a[i]=(a[i]+1)%2; } int cnt=0; for(int i=0;i<m;i++){ if(a[i]==1){ cnt++; } } return cnt; }

Compilation message (stderr)

circuit.cpp:6:30: error: expected ',' or '...' before 'P'
    6 | void init(int N,int M, int []P,int []A){
      |                              ^
circuit.cpp: In function 'void init(int, int, int*)':
circuit.cpp:10:6: error: 'P' was not declared in this scope
   10 | p[i]=P[i];
      |      ^
circuit.cpp:13:6: error: 'A' was not declared in this scope
   13 | a[i]=A[i];
      |      ^