답안 #285177

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
285177 2020-08-28T11:28:56 Z CaroLinda Sailing Race (CEOI12_race) C++14
30 / 100
73 ms 2432 KB
#include <bits/stdc++.h>

#define sz(x) (int)x.size()
#define mkt make_tuple
#define lp(i,a,b) for(int i = a ; i < b ; i++ )
#define ff first
#define ss second
#define eb push_back
#define ll long long
#define mk make_pair
#define pii pair<int,int>
#define debug printf
#define all(x) x.begin(),x.end()

const int MAXN = 510 ;

using namespace std ;

int N , K ;
int t[2] = {-1,1} ;
int dp[MAXN][MAXN][2] ;
vector<int> adj[MAXN] ;

bool isInside(int x, int L , int R , int type )
{

    if(type == -1) swap(L,R) , type = 1 ;

    if( L > R ) return (L <= x || x <= R ) ;
    return L <= x && x <= R ;

}

void caso0()
{
    int ans = 0  ;
    int curId = 0 ;

    for(int diff = 1 ; diff < N ; diff++ )
        for(int i = 0 ; i < N ; i++ )
            for(int j = 0 ; j < 2 ; j++ )
            {
                int R = ( i + diff * t[j] + N ) % N ;
                int &ptr = dp[i][R][j] ;
                ptr = 0 ;

                //cout << i << " " << R << endl ;

                for(int viz : adj[i] )
                {
                    if(!isInside(viz, i , R, t[j] ) ) continue ;

                    //cout << "A ponta " << viz << " ta dentro" << endl ;

                    ptr = max(ptr, 1 + dp[viz][R][j] ) ;
                    ptr = max(ptr, 1 + dp[viz][ i+t[j] ][ !j ] ) ;

                }

                if(ptr > ans )
                {
                    ans = ptr ;
                    curId = i ;
                }
            }

    printf("%d %d\n" , ans , curId+1  ) ;


    exit(0) ;
}

int main()
{
    scanf("%d%d", &N , &K ) ;
    for(int i = 0 , x ; i < N ; i++ )
        while( scanf("%d", &x) && x != 0 ) adj[i].push_back(x-1) ;

    if(K == 0) caso0() ;
}

Compilation message

race.cpp: In function 'int main()':
race.cpp:75:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   75 |     scanf("%d%d", &N , &K ) ;
      |     ~~~~~^~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 384 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 384 KB Unexpected end of file - int32 expected
5 Incorrect 1 ms 512 KB Output isn't correct
6 Incorrect 0 ms 384 KB Unexpected end of file - int32 expected
7 Correct 3 ms 640 KB Output is correct
8 Incorrect 1 ms 384 KB Unexpected end of file - int32 expected
9 Correct 4 ms 768 KB Output is correct
10 Correct 9 ms 768 KB Output is correct
11 Correct 5 ms 768 KB Output is correct
12 Incorrect 1 ms 384 KB Unexpected end of file - int32 expected
13 Incorrect 2 ms 384 KB Unexpected end of file - int32 expected
14 Incorrect 47 ms 1920 KB Output isn't correct
15 Incorrect 4 ms 512 KB Unexpected end of file - int32 expected
16 Incorrect 5 ms 512 KB Unexpected end of file - int32 expected
17 Incorrect 5 ms 512 KB Unexpected end of file - int32 expected
18 Correct 73 ms 2432 KB Output is correct
19 Incorrect 6 ms 640 KB Unexpected end of file - int32 expected
20 Incorrect 6 ms 512 KB Unexpected end of file - int32 expected