[ZOJ] 3889 Making Sequence [구성]

3752 단어
전송문:[ZOJ] 3889 Making Sequence
제목의 뜻에 따라 구성하면 된다.ZOJ 월례전에서 저희가 뺏은 두 번째 FBww.
my  code:
#include <bits/stdc++.h>
using namespace std ;

typedef unsigned long long ULL ;

const int MAXN = 205 ;

ULL n , a , b , s , t ;
ULL S[MAXN] , T[MAXN] , tmp[MAXN] ;

bool calc ( ULL s , ULL a , ULL S[] ) {
    if ( s > n ) return 0 ;
    s -= a ;
    for ( int i = 1 ; i <= s ; ++ i ) S[i] = i ;
    for ( int i = 0 ; i < a ; ++ i ) {
        tmp[1] = 1 ;
        for ( int j = 1 ; j <= s ; ++ j ) {
            if ( n < tmp[j] || n - tmp[j] < S[j] ) return false ;
            tmp[j + 1] = tmp[j] + S[j] ;
        }
        ++ s ;
        for ( int j = 1 ; j <= s ; ++ j ) S[j] = tmp[j] ;
    }
    return true ;
}

void solve () {
    if ( !calc ( s , a , S ) ) printf ( "-1
"
) ; else for ( int i = 1 ; i <= s ; ++ i ) printf ( "%llu%c" , S[i] , i < s ? ' ' : '
'
) ; if ( !calc ( t , b , T ) ) printf ( "-1
"
) ; else for ( int i = 1 ; i <= t ; ++ i ) printf ( "%llu%c" , n - T[i] + 1 , i < t ? ' ' : '
'
) ; } int main () { int f = 0 ; while ( ~scanf ( "%llu%llu%llu%llu%llu" , &n , &a , &b , &s , &t ) ) { if ( f ++ ) puts ( "" ) ; solve () ; } return 0 ; }

좋은 웹페이지 즐겨찾기