답안 #996102

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
996102 2024-06-10T08:00:42 Z anHiep Xylophone (JOI18_xylophone) C++17
0 / 100
0 ms 344 KB
#include "xylophone.h"
#include<bits/stdc++.h>

using namespace std;

static int a[5005];
static int d[5005][5005]; 

void solve(int n) {
	int dis = query(1, 2);
    for(int i=3; i<=n; i++) {
        d[i - 2][i] = query(i - 2, i);
        d[i - 1][i] = query(i - 1, i);
    }
    for(int i=n; i>=1; i--) {
        a[1] = i;
        cout<<a[1]<<' '<<dis<<'\n';
        for(int k=-1; k<=1; k+=2) {
            set<int> s;
            a[2] = a[1] + k*dis;
            s.insert(a[1]);
            s.insert(a[2]);
            for(int j=3; j<=n; j++) {
                int cal = max(a[j - 1], a[j - 2]) - min(a[j - 1], a[j - 2]);
                if(d[j - 2][j] == cal) {
                    if(a[j - 1] > a[j - 2]) a[j] = a[j - 1] - d[j - 1][j];
                    else a[j] = a[j - 1] + d[j - 1][j];
                }
                else {
                    if(a[j - 1] + d[j - 1][j] - min(a[j - 2], a[j - 1]) == d[j - 2][j]) a[j] = a[j - 1] + d[j - 1][j];
                    if(max(a[j - 2], a[j - 1]) - (a[j - 1] - d[j - 1][j]) == d[j - 2][j]) a[j] = a[j - 1] - d[j - 1][j];
                }
                s.insert(a[j]);
            }
            // if(a[1] == 9 && a[2] == 6) {
            //     cout<<(s.size() == n && *s.begin() == 1 && *s.rbegin() == n)<<'\n';
            // }
            if(s.size() == n && *s.begin() == 1 && *s.rbegin() == n) {
                // for(int j=1; j<=n; j++) cout<<a[j]<<' ';
                // cout<<'\n';
                // cout<<d[1][3]<<' '<<d[2][3]<<'\n';
                for(int j=1; j<=n; j++) answer(j, a[j]);
                return;
            }
        }
    }
}

Compilation message

xylophone.cpp: In function 'void solve(int)':
xylophone.cpp:38:25: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   38 |             if(s.size() == n && *s.begin() == 1 && *s.rbegin() == n) {
      |                ~~~~~~~~~^~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -