답안 #1044094

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1044094 2024-08-05T07:20:07 Z vjudge1 Zagonetka (COI18_zagonetka) C++17
0 / 100
41 ms 672 KB
#include<bits/stdc++.h>

using namespace std;

void print(vector<int> v)
{
  for(int i = 0; i + 1 < v.size(); i++)
    cout << v[i] << ' ';
  cout << v.back() << endl;
}

bool ask(vector<int> v)
{
  cout << "query ";
  print(v); 
  bool res;
  cin >> res;
  return res;
}

void out(vector<int> a, vector<int> b)
{
  cout << "end\n";
  print(a);
  print(b);
  exit(0);
}

vector<int> compute(vector<vector<int> > G, int m)
{
  int n = G.size();
  int in[n] = {};
  for(int i = 0; i < n; i ++)
    for(int j : G[i])
      {
	// cerr << i << ' ' << j << endl;
	in[j]++;

      }

  vector<int> topo;
  set<int> st;

  for(int i = 0; i < n; i ++)
    if(in[i] == 0)
      st.insert(i * m);

  while(st.size())
    {
      int u = *st.begin();
      //cerr << u << endl;
      u *= m;
      st.erase(st.begin());
      topo.push_back(u);

      for(int v : G[u])
	{
	  in[v]--;
	  if(in[v] == 0)
	    st.insert(v * m);
	}
    }

  vector<int> ans(n);
  for(int i = 0; i < n; i++)
    ans[topo[i]] = i + 1;
  return ans;
}

int main()
{
  int n;
  cin >> n;
  vector<int> p(n), idx(n + 1);
  for(int i = 0; i < n; i ++)
    {
      cin >> p[i];
      idx[p[i]] = i;
    }

  vector<vector<int> > G(n), I(n);
  
  vector<pair<int,int> > conditions;
  bool f[n] = {};
  for(int v = 1; v <= n; v++)
    {
      vector<int> vec = {idx[v]};
      for(int u = v - 1; u > 0; u--)
	{
	  vector<int> q = p;
	  
	  vec.push_back(idx[u]);
	  for(int j = 0; j + 1 < vec.size(); j++)
	    swap(q[vec[j]], q[vec[j + 1]]);

	  /* int cur = vec.back();
	  while(G[cur].size())
	    {
	      // cerr << "cur = " << cur << endl;
	      int i = G[cur][0];
	      for(int k : G[cur])
		if(q[i] < q[k])
		  i = k;
	      swap(q[i], q[cur]);
	      cur = i;
	      }*/
	  
	  bool res = ask(q);
	  
	  if(!res)
	    {
	      conditions.push_back({vec.back(), vec[0]});
	      G[vec.back()].push_back(vec[0]);
	      I[vec[0]].push_back(vec.back());
	      // cerr << vec[0] << ' ' << vec.back() << endl;
	    }
	  vec.pop_back();
	}  
    }
  /*
  for(auto [x, y] : conditions)
    {
      // G[x].push_back(y), I[y].push_back(x);
      cerr << x << ' ' << y << endl;
    }
  // */
  vector<int> a = compute(G, 1);
  vector<int> b = compute(G, -1);
  out(a, b);
  return 0;
}

Compilation message

zagonetka.cpp: In function 'void print(std::vector<int>)':
zagonetka.cpp:7:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    7 |   for(int i = 0; i + 1 < v.size(); i++)
      |                  ~~~~~~^~~~~~~~~~
zagonetka.cpp: In function 'int main()':
zagonetka.cpp:93:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   93 |    for(int j = 0; j + 1 < vec.size(); j++)
      |                   ~~~~~~^~~~~~~~~~~~
zagonetka.cpp:84:8: warning: unused variable 'f' [-Wunused-variable]
   84 |   bool f[n] = {};
      |        ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 41 ms 672 KB Output isn't correct
2 Halted 0 ms 0 KB -