답안 #67274

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
67274 2018-08-13T18:57:40 Z yusufake DEL13 (info1cup18_del13) C++
15 / 100
20 ms 3624 KB
#include<bits/stdc++.h>
using namespace std;

#define mp make_pair
#define pb push_back
#define st first
#define nd second

typedef long long ll;
typedef pair < int , int > pp;
typedef vector < int > vi;

const int mod = 1e9 + 7;
const int N   = 3e5 + 5;

vector < int > bas,son;
int M[N][3],A[N],P[N],H[N],n,q,x,i,j,k,t,p,ww,ok;

int f(int i, int h){
    if(i == 0) return h==0;
    int &r = M[i][h];
    if(r != -1) return r;
    r = 0;
    if(h > A[i]) return r = 0;
    if(h == 0){
        if(A[i]&1) r = f(P[i],1);
        else r = f(P[i],2);
    }
    if(h == 1){
        if(A[i]&1) { r = f(P[i],0);  if(A[i]>2) r |= f(P[i],2); } 
        else r = f(P[i],1);
    }
    if(h == 2){
        if(A[i]&1) r = f(P[i],1); 
        else { r = f(P[i],0);  if(A[i]>3) r |= f(P[i],2); }
    }
    return r;
}

void g(int i, int h){
    if(i == 0) return;
    for(int j=0;j<h;j++) son.pb(i);
    int x = 0;
    if(h == 0){
        if(A[i]&1)  g(P[i],x=1);
        else g(P[i],x=2);
    }
    if(h == 1){
        if(A[i]&1) { if(f(P[i],0))f(P[i],x=0);  else g(P[i],x=2); } 
        else g(P[i],x=1);
    }
    if(h == 2){
        if(A[i]&1) g(P[i],x=1); 
        else { if(f(P[i],0)) g(P[i],x=0);  else g(P[i],x=2); }
    }
    int t = A[i] - h -  x;
    t>>=1;
    for(;t--;) bas.pb(i-A[i]+i>>1);
}


int main (){
cin >> ww; for(;ww--; puts("")){
    scanf ("%d%d",&n,&q);
    for(i=0;i<=n+1;i++) { 
        M[i][0] = M[i][1] = M[i][2] = -1; H[i]=0; 
    P[i]=0; A[i]=0;
    }
    H[0] = H[n+1] = 1;
    for(i=1;i<=q;i++){
        scanf("%d",&x);
        H[x] = 1;
    }
    ok = 1;
    bas.clear(); son.clear();
    for (p=0,i=1; i<=n; i=j){
        if(H[i]) { j=i+1; continue; }
        for(j=i; !H[j] && j<=n; j++);
        //cout << i << " " << j << " qq\n";
        P[j] = p; A[j] = j-i; p = j;
        //if(!H[j]) assert(0);
        if(j == n+1 || H[j+1]){
            ok &= f(j,0);
            if(ok) g(j,0);
            p = 0;
        }
    }
    
    if(ok==0){
        printf("-1");
        continue;
    }
    printf("%d\n", (n-q)/2);
    //cout << son.size() << " im\n";
    for(auto x : bas) printf("%d ", x); 
    //return 0;
    for(auto x : son) printf("%d ", x);
    //return 0;
}
}

Compilation message

del13.cpp: In function 'void g(int, int)':
del13.cpp:58:29: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
     for(;t--;) bas.pb(i-A[i]+i>>1);
                       ~~~~~~^~
del13.cpp: In function 'int main()':
del13.cpp:64:11: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf ("%d%d",&n,&q);
     ~~~~~~^~~~~~~~~~~~~~
del13.cpp:71:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d",&x);
         ~~~~~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB Integer -1 violates the range [1, 9]
2 Incorrect 3 ms 484 KB Integer -1 violates the range [1, 8]
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB Integer -1 violates the range [1, 9]
2 Incorrect 3 ms 484 KB Integer -1 violates the range [1, 8]
3 Incorrect 10 ms 536 KB Integer -1 violates the range [1, 17]
4 Incorrect 7 ms 536 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 788 KB Output is correct
2 Correct 6 ms 2468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB Integer -1 violates the range [1, 9]
2 Incorrect 3 ms 484 KB Integer -1 violates the range [1, 8]
3 Incorrect 10 ms 536 KB Integer -1 violates the range [1, 17]
4 Incorrect 7 ms 536 KB Output isn't correct
5 Incorrect 2 ms 2468 KB Integer -1 violates the range [1, 75]
6 Incorrect 3 ms 2468 KB Integer -1 violates the range [1, 100]
7 Incorrect 4 ms 2468 KB Integer 95 violates the range [1, 83]
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB Integer -1 violates the range [1, 9]
2 Incorrect 3 ms 484 KB Integer -1 violates the range [1, 8]
3 Incorrect 10 ms 536 KB Integer -1 violates the range [1, 17]
4 Incorrect 7 ms 536 KB Output isn't correct
5 Incorrect 2 ms 2468 KB Integer -1 violates the range [1, 75]
6 Incorrect 3 ms 2468 KB Integer -1 violates the range [1, 100]
7 Incorrect 4 ms 2468 KB Integer 95 violates the range [1, 83]
8 Incorrect 12 ms 2928 KB Integer -1 violates the range [1, 87]
9 Incorrect 19 ms 2976 KB Integer -1 violates the range [1, 84]
10 Incorrect 14 ms 3100 KB Integer 124 violates the range [1, 81]
11 Incorrect 20 ms 3624 KB Integer -1 violates the range [1, 87]