Submission #1043978

# Submission time Handle Problem Language Result Execution time Memory
1043978 2024-08-05T05:32:50 Z 변재우(#11009) Prize (CEOI22_prize) C++17
0 / 100
162 ms 14556 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], I[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=0; i<V.size(); i++) I[V[i]]=i+1;
    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);
    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=I[a], pb=I[b];
        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:29:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |     for(int i=0; i<V.size(); i++) I[V[i]]=i+1;
      |                  ~^~~~~~~~~
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 Runtime error 162 ms 14556 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 96 ms 12912 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 112 ms 13332 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 134 ms 13832 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 146 ms 12908 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -