답안 #275833

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
275833 2020-08-20T07:56:24 Z 임성재(#5103) Circus (Balkan15_CIRCUS) C++17
0 / 100
1557 ms 524288 KB
#include "circus.h"
#include<bits/stdc++.h>
using namespace std;

#define fast ios::sync_with_stdio(false); cin.tie(0);
#define fi first
#define se second
#define em emplace
#define eb emplace_back
#define all(v) (v).begin(), (v).end()
#define mp make_pair

typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef pair<int,pii> piii;
const int inf = 1e9;
const ll INF = 1e18;

int n, m;
int dp[100010];
bool chk[100010];
set<int> s;
vector<int> p;
priority_queue<piii, vector<piii>, greater<piii>> pQ;

int put(int x) {
    int c1 = -1, c2 = -1;

    if(s.lower_bound(x + dp[x]) != s.end()) c2 = *s.lower_bound(x + dp[x]);
    if(s.upper_bound(x - dp[x]) != s.begin()) c1 = *prev(s.upper_bound(x - dp[x]));

    if(c1 != -1) pQ.em(x - c1, mp(c1, x));
    if(c2 != -1) pQ.em(c2 - x, mp(c2, x));
}

void init(int N, int M, int P[]){
    n = N;
    m = M;

    for(int i=0; i<n; i++) p.eb(P[i]);
    for(int i=0; i<p.size(); i++) s.insert(p[i]);

    pQ.em(0, mp(m, m));

    while(pQ.size()) {
        auto x = pQ.top();
        pQ.pop();

        //cout << x.fi << " " << x.se.fi << " " << x.se.se << endl;

        if(chk[x.se.fi]) continue;
        chk[x.se.fi] = true;
        dp[x.se.fi] = x.fi;
        s.erase(x.se.fi);

        put(x.se.fi);
        put(x.se.se);
    }
}

int minLength(int D) {
    int ret = m - D;
    for(int i=0; i<p.size(); i++) {
        if(abs(p[i] - D) < dp[p[i]]) continue;
        ret = min(ret, abs(p[i] - D));
    }

    return ret;
}

Compilation message

circus.cpp: In function 'int put(int)':
circus.cpp:35:1: warning: no return statement in function returning non-void [-Wreturn-type]
   35 | }
      | ^
circus.cpp: In function 'void init(int, int, int*)':
circus.cpp:42:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |     for(int i=0; i<p.size(); i++) s.insert(p[i]);
      |                  ~^~~~~~~~~
circus.cpp: In function 'int minLength(int)':
circus.cpp:64:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |     for(int i=0; i<p.size(); i++) {
      |                  ~^~~~~~~~~
grader.cpp: In function 'int main()':
grader.cpp:14:12: warning: unused variable 'max_code' [-Wunused-variable]
   14 |  long long max_code;
      |            ^~~~~~~~
grader.cpp:16:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   16 |  scanf("%d%d", &N, &M);
      |  ~~~~~^~~~~~~~~~~~~~~~
grader.cpp:18:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   18 |   scanf("%d", &P[i]);
      |   ~~~~~^~~~~~~~~~~~~
grader.cpp:21:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   21 |  scanf("%d", &Q);
      |  ~~~~~^~~~~~~~~~
grader.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   23 |   scanf("%d", &d);
      |   ~~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 56 ms 11504 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1557 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1557 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1557 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 56 ms 11504 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 56 ms 11504 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -