답안 #328250

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
328250 2020-11-16T02:20:35 Z daniel920712 Rope (JOI17_rope) C++14
0 / 100
1 ms 364 KB
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <string.h>
#include <map>
#include <utility>
#include <algorithm>
#include <stack>
using namespace std;
int all[1000005];
int temp[1000005];
int ans[1000005];
bool have[5][100005]={0};
int cha[100005];
int DP[5][100005]={0};

vector < pair < int , int > > how;
int N,M;
int F(int x,int y)
{
    if(have[x][y]) return DP[x][y];
    if(y==0) return 0;
    have[x][y]=1;
    if(x==0)
    {
        if((how[y].second-how[y].first+1)%2==0) DP[x][y]=F(0,y-1);
        else DP[x][y]=F(1,y-1)+min(cha[how[y].first],how[y-1].second);

    }
    else
    {
        if((how[y].second-how[y].first)%2==0) DP[x][y]=F(0,y-1);
        else DP[x][y]=F(1,y-1)+min(cha[how[y].first],how[y-1].second);
    }
    //printf("%d %d %d\n",x,y,DP[x][y]);
    return DP[x][y];
}
int main()
{
    int i,j,k,con=0,K,now,l,t=0;
    scanf("%d %d",&N,&M);
    for(i=0;i<N;i++) scanf("%d",&all[i]);
    for(i=1;i<=M;i++) ans[i]=1e9;
    for(i=1;i<=M;i++)
    {
        for(j=i+1;j<=M;j++)
        {
            con=0;
            for(k=0;k<N;k++)
            {
                if(all[k]!=i&&all[k]!=j)
                {
                    con++;
                    temp[k]=i;
                    cha[k]=0;
                }
                else
                {
                    cha[k]=1;
                    temp[k]=all[k];
                }
            }
            how.clear();
            now=0;
            l=0;
            for(k=0;k<N;k++)
            {
                //printf("%d ",temp[k]);
                if(k&&temp[k]!=temp[k-1])
                {
                    how.push_back(make_pair(l,k-1));
                    l=k;
                }
            }
            //printf("\n");
            how.push_back(make_pair(l,k-1));
            //printf("aa %d %d %d\n",i,j,con);
            //for(auto k:how) printf("%d %d\n",k.first,k.second);
            K=how.size();
            for(k=0;k<=K;k++) have[0][k]=have[1][k]=0;
            ans[i]=min(ans[i],min(F(0,K-1),F(1,K-1))+con);
            ans[j]=min(ans[j],min(F(0,K-1),F(1,K-1))+con);

        }
    }

    for(i=1;i<=M;i++) printf("%d\n",ans[i]);
	return 0;
}

Compilation message

rope.cpp: In function 'int main()':
rope.cpp:41:23: warning: variable 'now' set but not used [-Wunused-but-set-variable]
   41 |     int i,j,k,con=0,K,now,l,t=0;
      |                       ^~~
rope.cpp:41:29: warning: unused variable 't' [-Wunused-variable]
   41 |     int i,j,k,con=0,K,now,l,t=0;
      |                             ^
rope.cpp:42:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   42 |     scanf("%d %d",&N,&M);
      |     ~~~~~^~~~~~~~~~~~~~~
rope.cpp:43:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   43 |     for(i=0;i<N;i++) scanf("%d",&all[i]);
      |                      ~~~~~^~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -