답안 #897044

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
897044 2024-01-02T13:32:03 Z irmuun 가장 긴 여행 (IOI23_longesttrip) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
#include "longesttrip.h"
 
using namespace std;
 
#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()
 
vector<int>longest_trip(int N, int D){
    vector<int>ans;
    if(D==3){
        vector<int>ans(N);
        iota(all(ans),0);
        return ans;
    }
    if(D==2){
        vector<int>ans;
        ans.pb(0);
        int l=0,r=0;
        int x;
        for(int i=1;i<N;i++){
            if(are_connected({0},{i})==true){
                ans.pb(i);
                x=i;
                r=i;
                break;
            }
        }
        for(int i=1;i<N;i++){
            if(i!=x){
                if(are_connected({l},{i})){
                    ans.insert(ans.begin(),i);
                    l=i;
                }
                else{
                    ans.pb(i);
                    r=i;
                }
            }
        }
        return ans;
    }
    vector<int>v,u;
    int l0=0,r0=0,l1=1,r1=1;
    v.pb(0);
    u.pb(1);
    for(int i=2;i<N;i++){
        if(are_connected({v.back()},{i})==true){
            v.pb(i);
        }
        else if(are_connected({u.back()},{i})==true){
            u.pb(i);
        }
        else{
            reverse(all(u));
            v.insert(v.end(),all(u));
            u={i};
        }
    }
    if(are_connecter(v,u)==false){
        if(v.size()>=u.size()){
            return v;
        }
        return u;
    }
    //now need combine 2 cycles
    vector<int>v1=v,u1=u;
    while(v1.size()>1){
        vector<int>l,r;
        for(int i=0;i<v1.size()/2;i++){
            l.pb(v1[i]);
        }
        for(int i=v1.size()/2;i<v1.size();i++){
            r.pb(v1[i]);
        }
        if(are_connected(l,u1)==true){
            v1=l;
        }
        else{
            v1=r;
        }
    }
    while(u1.size()>1){
        vector<int>l,r;
        for(int i=0;i<u1.size()/2;i++){
            l.pb(v1[i]);
        }
        for(int i=u1.size()/2;i<u1.size();i++){
            r.pb(v1[i]);
        }
        if(are_connected(v1,l)==true){
            v1=l;
        }
        else{
            v1=r;
        }
    }
    for(int i=0;i<v.size();i++){
        if(v[i]==v1[0]){
            rotate(v.begin(),v.begin()+i,v.end());
            break;
        }
    }
    for(int i=0;i<u.size();i++){
        if(u[i]==u1[0]){
            rotate(u.begin(),u.begin()+i,u.end());
            break;
        }
    }
    reverse(all(u));
    v.insert(v.end(),all(u));
    return v;
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:23:17: warning: variable 'r' set but not used [-Wunused-but-set-variable]
   23 |         int l=0,r=0;
      |                 ^
longesttrip.cpp:64:8: error: 'are_connecter' was not declared in this scope; did you mean 'are_connected'?
   64 |     if(are_connecter(v,u)==false){
      |        ^~~~~~~~~~~~~
      |        are_connected
longesttrip.cpp:74:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   74 |         for(int i=0;i<v1.size()/2;i++){
      |                     ~^~~~~~~~~~~~
longesttrip.cpp:77:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   77 |         for(int i=v1.size()/2;i<v1.size();i++){
      |                               ~^~~~~~~~~~
longesttrip.cpp:89:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   89 |         for(int i=0;i<u1.size()/2;i++){
      |                     ~^~~~~~~~~~~~
longesttrip.cpp:92:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   92 |         for(int i=u1.size()/2;i<u1.size();i++){
      |                               ~^~~~~~~~~~
longesttrip.cpp:102:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  102 |     for(int i=0;i<v.size();i++){
      |                 ~^~~~~~~~~
longesttrip.cpp:108:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  108 |     for(int i=0;i<u.size();i++){
      |                 ~^~~~~~~~~
longesttrip.cpp:48:9: warning: unused variable 'l0' [-Wunused-variable]
   48 |     int l0=0,r0=0,l1=1,r1=1;
      |         ^~
longesttrip.cpp:48:14: warning: unused variable 'r0' [-Wunused-variable]
   48 |     int l0=0,r0=0,l1=1,r1=1;
      |              ^~
longesttrip.cpp:48:19: warning: unused variable 'l1' [-Wunused-variable]
   48 |     int l0=0,r0=0,l1=1,r1=1;
      |                   ^~
longesttrip.cpp:48:24: warning: unused variable 'r1' [-Wunused-variable]
   48 |     int l0=0,r0=0,l1=1,r1=1;
      |                        ^~