Submission #295911

#TimeUsernameProblemLanguageResultExecution timeMemory
295911erd1Unscrambling a Messy Bug (IOI16_messy)C++14
38 / 100
1 ms512 KiB
#include "messy.h"

#include <bits/stdc++.h>
using namespace std;
#define pb push_back

vector<int> restore_permutation(int n, int w, int r) {
  string s(n, '0');
  for(int i = 0; i < n-1; i++){
    s[i] = '1';
    add_element(s);
  }
  compile_set();
  string cur(n, '0');
  vector<int> ans(n);
  for(int i = 0; i < n; i++)
    for(int j = 0; j < n; j++){
      if(cur[j] == '1')continue;
      cur[j] = '1';
      if(i == n-1 || check_element(cur)){
        //cout << i << " " << j << endl;
        ans[j] = i; break;
      }
      cur[j] = '0';
    }
  //for(auto i: ans)cout << i << " ";cout << endl;
  return ans;
}
#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...