제출 #29253

#제출 시각UTC-0아이디문제언어결과실행 시간메모리
292532017-07-18 20:13:51Nikefor앵무새 (IOI11_parrots)C++98
컴파일 에러
0 ms0 KiB
#include "encoder.h"
#include "encoderlib.h"
#include<cmath>
#include<cstdio>
bool a[9];
void encode(int N, int M[])
{
int sum=0;
// printf("hebele\n");
for(int i=0; i<N; i++) {
for(int b=0; b<9; b++) a[b] = false;
int n = M[i];
for(int j=7; j>-1; j--) {
if( n>=(1<<j) ) {
a[j] = true;
// printf("%d true\n", j);
n-=1<<j;
}
}
for(int j=0; j<4; j++) {
if(a[2*j] and a[2*j+1]) { sum+=3; }
else if(a[2*j]) { sum+=2;}
else if(a[2*j+1]) {sum++;}
}
}
for(int i=0; i<N; i++) {
for(int b=0; b<9; b++) a[b] = false;
int n = M[i];
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

컴파일 시 표준 에러 (stderr) 메시지

encoder.cpp:52:46: warning: "/*" within comment [-Wcomment]
                 if(!(a[2*j] or a[2*j+1]) ) { /*printf("%d 3 kere\n", j); */send(msg+j); send(msg+j); send(msg+j); sen+=3;}
                                               
encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:52:85: error: 'j' was not declared in this scope
                 if(!(a[2*j] or a[2*j+1]) ) { /*printf("%d 3 kere\n", j); */send(msg+j); send(msg+j); send(msg+j); sen+=3;}
                                                                                     ^
encoder.cpp:52:115: error: 'sen' was not declared in this scope
                 if(!(a[2*j] or a[2*j+1]) ) { /*printf("%d 3 kere\n", j); */send(msg+j); send(msg+j); send(msg+j); sen+=3;}
                                                                                                                   ^~~
encoder.cpp:52:115: note: suggested alternative: 'send'
                 if(!(a[2*j] or a[2*j+1]) ) { /*printf("%d 3 kere\n", j); */send(msg+j); send(msg+j); send(msg+j); sen+=3;}
                                                                                                                   ^~~
                                                                                                                   send
encoder.cpp:53:17: error: 'else' without a previous 'if'
                 else if(a[2*j] and a[2*j+1]) continue;
                 ^~~~
encoder.cpp:53:29: error: 'j' was not declared in this scope
                 else if(a[2*j] and a[2*j+1]) continue;
                             ^
encoder.cpp:53:46: error: continue statement not within a loop
                 else if(a[2*j] and a[2*j+1]) continue;
                                              ^~~~~~~~
encoder.cpp:54:40: error: 'msg' was not declared in this scope
                 else if(a[2*j]) { send(msg+j); send(msg+j); /*printf("%d 2 kere\n", j);*/ sen+=2;}
                                        ^~~
encoder.cpp:54:91: error: 'sen' was not declared in this scope
                 else if(a[2*j]) { send(msg+j); send(msg+j); /*printf("%d 2 kere\n", j);*/ sen+=2;}
                                                                                           ^~~
encoder.cpp:54:91: note: suggested alternative: 'send'
                 else if(a[2*j]) { send(msg+j); send(msg+j); /*printf("%d 2 kere\n", j);*/ sen+=2;}
                                                                                           ^~~
                                                                                           send
encoder.cpp:55:72: error: 'msg' was not declared in this scope
                 else if(a[2*j+1]) {/*printf("%d 1 kere\n", j);  */send(msg+j); sen++;}
                                                                        ^~~
encoder.cpp:55:80: error: 'sen' was not declared in this scope
                 else if(a[2*j+1]) {/*printf("%d 1 kere\n", j);  */send(msg+j); sen++;}
                                                                                ^~~
encoder.cpp:55:80: note: suggested alternative: 'send'
                 else if(a[2*j+1]) {/*printf("%d 1 kere\n", j);  */send(msg+j); sen++;}
                                                                                ^~~
                                                                                send
encoder.cpp: At global scope:
encoder.cpp:60:9: error: expected declaration before '}' token
         }*/
         ^