Submission #641595

# Submission time Handle Problem Language Result Execution time Memory
641595 2022-09-17T06:24:44 Z gun_gan Zagrade (COI17_zagrade) C++17
0 / 100
555 ms 20400 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
 
int main() 
{
    cin.tie(0); ios_base::sync_with_stdio(0);

    int n, q;
    cin >> n >> q;

    vector<int> ans(n, -1);
    set<int> s;
    s.insert(0);
    for(int i = 1; i < n; i++) {
        if(ans[i] != -1) continue;
        while(!s.empty()) {
            int l = *s.rbegin(), r = i;
            if(l >= 0 && r < n) {
                cout << "? " << l + 1 << " " << r + 1 << endl;
                int x; cin >> x;
                if(x) {
                    ans[l] = 1;
                    ans[r] = 0;
                    s.erase(l);
                    i++;
                } else {
                    s.insert(r);
                    break;
                }
            } else {
                break;
            }
        }
        if(s.empty() && ans[i] == -1) s.insert(i);
    }

    int x = 0;
    for(int i = 0; i < n; i++) x += ans[i] == -1;
    x /= 2;

    while(!s.empty()) s.erase(s.begin());

    bool ok = 0;
    for(int i = 0; i < n; i++) {
        if(ans[i] != -1) continue;
        if(s.size() >= x) ok = 1;
        if(!ok) s.insert(i);
        if(ok) {
            ans[*s.rbegin()] = 0;
            ans[i] = 1;
            s.erase(*s.rbegin());
        }
    }

    cout << "! ";
    for(int i = 0; i < n; i++) {
        assert(ans[i] != -1);
        if(ans[i]) cout << '('; 
        else cout << ')';
    }
}

Compilation message

zagrade.cpp: In function 'int main()':
zagrade.cpp:47:21: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   47 |         if(s.size() >= x) ok = 1;
      |            ~~~~~~~~~^~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 555 ms 20400 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -