제출 #1057178

#제출 시각아이디문제언어결과실행 시간메모리
1057178MrPavlitoCave (IOI13_cave)C++17
100 / 100
121 ms600 KiB
#include "cave.h"
#include <bits/stdc++.h>
//#define int long long
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define sc second
//#define endl "\n"
#define pii pair<int,int>

using namespace std;

const int MAXN = 5e3+5;
const int mod7 = 1e9+7;
const long long inf = 1e18;


void exploreCave(int N) {
    int n = N;
    int trenutnacomb[n];
    int solved[n];
    int rez[n];
    for(int i=0; i<n; i++)solved[i] = 0;
    for(int i=0; i<n; i++)rez[i] = 0;
    for(int i=0; i<n; i++)
    {
        for(int j=0; j<n; j++)trenutnacomb[j] = rez[j];
        int t = tryCombination(trenutnacomb);
        int l = 0;
        int r = n-1;
        while(l<r)
        {
            int mid = l+r >> 1;
            for(int j=l; j<= mid; j++)if(!solved[j])trenutnacomb[j] = (trenutnacomb[j]^1);
            int p = tryCombination(trenutnacomb);
            bool pomoc;
            if(p == i && t == i)pomoc = true;
            else if(p != i && t != i)pomoc = true;
            else if(p != i && t == i)pomoc = false;
            else pomoc = false;
            if(pomoc)l = mid+1;
            else r = mid;
            t = p;
        }
        solved[l] = i+1;
        rez[l] = trenutnacomb[l];
        if(t == i)rez[l] = (trenutnacomb[l]^1);
    }
    for(int i=0; i<n; i++)solved[i]--;
    answer(rez, solved);

}

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

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:34:24: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   34 |             int mid = l+r >> 1;
      |                       ~^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...