제출 #440903

#제출 시각아이디문제언어결과실행 시간메모리
440903beferithCombo (IOI18_combo)C++14
컴파일 에러
0 ms0 KiB
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;

string guess_sequence(int N){
    const string chr[] = {"A","B","X","Y"};

    string curr = "", first = "";
    for(int i=0;i<N;i++){
        bool found = false;
        for(int j=0;j<3;j++){
            if(chr[j] != first && press(curr + chr[j]) == i+1){
                curr += chr[j];
                found = true;
                break;
            }
        }
        if(!found){
            curr += chr[j];
        }
        if(!i){
            first = curr;
        }
    }
    return curr;
}

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:19:25: error: 'j' was not declared in this scope
   19 |             curr += chr[j];
      |                         ^