Submission #1065451

# Submission time Handle Problem Language Result Execution time Memory
1065451 2024-08-19T07:46:05 Z vjudge1 Longest Trip (IOI23_longesttrip) C++17
5 / 100
13 ms 440 KB
#include "longesttrip.h"
#include<bits/stdc++.h>
using namespace std;
int findit(vector<int>v,vector<int>vf){
    if(v.size()==1)return v[0];
    vector<int>v1,v2;
    for(auto i:v)
        v1.push_back(i),
        swap(v1,v2);
    if(are_connected(v1,vf))
        return findit(v1,vf);
    return findit(v2,vf);
}
mt19937 rng(random_device{}());
vector<int> longest_trip(int N, int D){
    vector<int>path1,path2,v(N);
    iota(v.begin(),v.end(),0);
    shuffle(v.begin(),v.end(),rng);
    path1={v[0]},path2={v[1]};
    for(int i=1;i*2+1<N;i++){
        int U=v[i*2],V=v[i*2+1];
        assert(!path2.empty());
        if(are_connected({U},{V})){
            if(are_connected({U},{path1.back()}))
                path1.push_back(U),path1.push_back(V);
            else if(are_connected({U},{path2.back()}))
                path2.push_back(U),
                path2.push_back(V);
            else{ reverse(path2.begin(),path2.end());
                for(auto i:path2)
                    path1.push_back(i);
                path2 = {U,V};
            }
        } else {
            if(!are_connected({U},{path1.back()}))swap(U,V);
            path1.push_back(U);
            if(are_connected({path2.back()},{V}))
                path2.push_back(V);
            else {reverse(path2.begin(),path2.end());
                for(auto i:path2)
                    path1.push_back(i);
                path2 = {V};
            }
        }
    }
    if(N%2){
        int X=v.back();
        if(are_connected({X},{path1.back()}))
            path1.push_back(X);
        else if(are_connected({X},{path2.back()}))
            path2.push_back(X);
        else{ reverse(path2.begin(),path2.end());
            for(auto i:path2)
                path1.push_back(i);
            path2 = {X};
        }
    }
    if(!are_connected(path1,path2))
        return path1.size()>path2.size()?path1:path2;
    vector<int>A(1,path1[0]),B(1,path2[0]);
    if(path1.size()>1)A.push_back(path1.back());
    if(path2.size()>1)B.push_back(path2.back());
    if(are_connected(A,B))
        for(int i=0;i<A.size();i++)
            for(int j=0;j<B.size();j++)
                if(are_connected({A[i]},{B[j]})) {
                    if(!i)reverse(path1.begin(),path1.end());
                    if(j) reverse(path2.begin(),path1.end());
                    for(auto i:path2) path1.push_back(i);
                    return path1;
                }
    int X=findit(path1,path2);
    int Y=findit(path2,{X});
    while(path1.back()-X)
        path1.push_back(path1[0]),
        path1.erase(path1.begin());
    while(path2[0]-Y)
        path2.push_back(path2[0]),
        path2.erase(path2.begin());
    for(auto i:path2)
        path1.push_back(i);
    return path1;
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:64:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |         for(int i=0;i<A.size();i++)
      |                     ~^~~~~~~~~
longesttrip.cpp:65:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   65 |             for(int j=0;j<B.size();j++)
      |                         ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 9 ms 344 KB Output is correct
2 Correct 6 ms 344 KB Output is correct
3 Correct 5 ms 344 KB Output is correct
4 Correct 5 ms 344 KB Output is correct
5 Correct 6 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 8 ms 344 KB Output is correct
2 Correct 6 ms 344 KB Output is correct
3 Correct 5 ms 344 KB Output is correct
4 Correct 7 ms 344 KB Output is correct
5 Correct 4 ms 344 KB Output is correct
6 Correct 13 ms 344 KB Output is correct
7 Runtime error 3 ms 344 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 8 ms 344 KB Output is correct
2 Correct 6 ms 344 KB Output is correct
3 Correct 5 ms 344 KB Output is correct
4 Correct 7 ms 344 KB Output is correct
5 Correct 5 ms 344 KB Output is correct
6 Correct 6 ms 344 KB Output is correct
7 Runtime error 1 ms 344 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 8 ms 344 KB Output is correct
2 Correct 6 ms 344 KB Output is correct
3 Correct 4 ms 344 KB Output is correct
4 Correct 7 ms 344 KB Output is correct
5 Correct 4 ms 344 KB Output is correct
6 Correct 13 ms 344 KB Output is correct
7 Runtime error 1 ms 440 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -