Submission #1043965

# Submission time Handle Problem Language Result Execution time Memory
1043965 2024-08-05T05:19:52 Z 변재우(#11009) Prize (CEOI22_prize) C++17
0 / 100
227 ms 1056 KB
#include <bits/stdc++.h>
using namespace std;

const int Nmax=1000010;
int N, K, Q, T, R1, R2, A[Nmax], B[Nmax], C[Nmax], D[Nmax];
int X[Nmax], Y[Nmax];
vector<int> V;
vector<pair<int, int>> P;

int main() {
    scanf("%d%d%d%d", &N, &K, &Q, &T);
    for(int i=1; i<=N; i++) {
        int p; scanf("%d", &p);
        if(p<0) R1=i;
    }
    for(int i=1; i<=N; i++) {
        int p; scanf("%d", &p);
        if(p<0) R2=i;
    }
    if(R1==R2) {
        V.push_back(R1);
        for(int i=1; i<=N && V.size()<K; i++) if(i!=R1) V.push_back(i);
    }
    else {
        V.push_back(R1);
        for(int i=1; i<=N && V.size()<K-1; i++) if(i!=R1 && i!=R2) V.push_back(i);
        V.push_back(R2);
    }
    for(int i:V) printf("%d ", i);
    printf("\n");
    fflush(stdout);
    for(int i=0; i<K-1; i++) printf("? %d %d\n", V[i], V[i+1]);
    printf("!\n");
    fflush(stdout);
    return 0;
    for(int i=2; i<=K; i++)
        scanf("%d%d%d%d", A+i, B+i, C+i, D+i);
    for(int i=2; i<=K; i++) X[i]=X[i-1]-A[i]+B[i];
    for(int i=K-1; i>=1; i--) Y[i]=Y[i+1]-D[i+1]+C[i+1];
    for(int i=1; i<=T; i++) {
        int a, b; scanf("%d%d", &a, &b);
        P.push_back({a, b});
    }
    for(auto [a, b]:P) {
        int pa;
        if(a==R1) pa=1;
        else if(a==R2) pa=K;
        else pa=lower_bound(V.begin()+1, V.end()-1, a)-V.begin()+1;
        int pb;
        if(b==R1) pb=1;
        else if(b==R2) pb=K;
        else pb=lower_bound(V.begin()+1, V.end()-1, b)-V.begin()+1;
        if(pa>pb) swap(pa, pb);
        if(pa==pb) printf("0 0\n");
        else printf("%d %d\n", X[pb]-X[pa]+2*A[pa+1], Y[pa]-Y[pb]+2*D[pb]);
    }
    fflush(stdout);
    return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:22:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   22 |         for(int i=1; i<=N && V.size()<K; i++) if(i!=R1) V.push_back(i);
      |                              ~~~~~~~~^~
Main.cpp:26:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   26 |         for(int i=1; i<=N && V.size()<K-1; i++) if(i!=R1 && i!=R2) V.push_back(i);
      |                              ~~~~~~~~^~~~
Main.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |     scanf("%d%d%d%d", &N, &K, &Q, &T);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:13:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |         int p; scanf("%d", &p);
      |                ~~~~~^~~~~~~~~~
Main.cpp:17:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |         int p; scanf("%d", &p);
      |                ~~~~~^~~~~~~~~~
Main.cpp:37:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   37 |         scanf("%d%d%d%d", A+i, B+i, C+i, D+i);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:41:24: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   41 |         int a, b; scanf("%d%d", &a, &b);
      |                   ~~~~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 76 ms 796 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 112 ms 1052 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 99 ms 416 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 140 ms 408 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 227 ms 1056 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -