답안 #910753

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
910753 2024-01-18T07:50:38 Z tnun 디지털 회로 (IOI22_circuit) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
int n,m,p[100060],a[100060];
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;
}
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];
}
}

Compilation message

circuit.cpp: In function 'int count_ways(int, int)':
circuit.cpp:8:3: error: 'A' was not declared in this scope
    8 |   A[i]=(A[i]+1)%2;
      |   ^
circuit.cpp:11:16: error: 'M' was not declared in this scope
   11 |  for(int i=0;i<M;i++){
      |                ^
circuit.cpp:12:6: error: 'A' was not declared in this scope
   12 |   if(A[i]==1){
      |      ^