Submission #958069

# Submission time Handle Problem Language Result Execution time Memory
958069 2024-04-04T20:31:36 Z I_am_Polish_Girl Xoractive (IZhO19_xoractive) C++14
Compilation error
0 ms 0 KB
//#include "interactive.h"

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <stack>
#include <queue>
#include <cmath>
#include <random>
#include <chrono>

using namespace std;

//#define int long long

int log_ = 10;
int inf = 1000000000000000000;
int mod = 998244353;



vector<int> guess(int n)
{
    vector <int> ans(n);

    ans[0] = ask(1);

    map <int, int> nums_;

    for (int i = 0; i <= 6; i++)
    {
        vector <int> ind;


        for (int j = 1; j < n; j++)
        {
            if ((j & (1 << i)) != 0)
            {
                ind.push_back(j+1);
            }
        }

        vector <int> ans1 = get_pairwise_xor(ind);
        ind.push_back(1);

        vector <int> ans2 = get_pairwise_xor(ind);

        map <int, int> nums;

        for (int i = 0; i < ans2.size(); i++)
        {
            nums[ans2[i]]++;
        }

        for (int i = 0; i < ans1.size(); i++)
        {
            nums[ans1[i]]--;
        }


        for (auto i_ : nums)
        {
            if (i_.second != 0)
            {
                nums_[i_.first ^ ans[0]] += (1 << i);
            }
        }
    }



    for (int i = 1; i < n; i++)
    {
        for (auto j : nums_)
        {
            if (j.second == i)
                ans[i] = j.first;
        }
    }


    return ans;
};

Compilation message

Xoractive.cpp:21:11: warning: overflow in conversion from 'long int' to 'int' changes value from '1000000000000000000' to '-1486618624' [-Woverflow]
   21 | int inf = 1000000000000000000;
      |           ^~~~~~~~~~~~~~~~~~~
Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:30:14: error: 'ask' was not declared in this scope
   30 |     ans[0] = ask(1);
      |              ^~~
Xoractive.cpp:47:29: error: 'get_pairwise_xor' was not declared in this scope
   47 |         vector <int> ans1 = get_pairwise_xor(ind);
      |                             ^~~~~~~~~~~~~~~~
Xoractive.cpp:54:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   54 |         for (int i = 0; i < ans2.size(); i++)
      |                         ~~^~~~~~~~~~~~~
Xoractive.cpp:59:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   59 |         for (int i = 0; i < ans1.size(); i++)
      |                         ~~^~~~~~~~~~~~~