Submission #1069579

# Submission time Handle Problem Language Result Execution time Memory
1069579 2024-08-22T06:15:08 Z Faisal_Saqib Longest Trip (IOI23_longesttrip) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

#define ll int
#define pll pair<ll,ll>
#define ppll pair<ll,pll>
#define vpl vector<pll>
#define pb push_back
bool are_connected(std::vector<int> A, std::vector<int> B);
std::vector<int> longest_trip(int n, int D)
{
	if(D==3)
	{
		vector<int> ans;
		for(int i=0;i<n;i++)
			ans.push_back(i);
		return ans;
	}
	else if(D==2)
	{
		vector<int> ans;
		for(int i=n-1;i>0;i--)
			ans.pb(i);
		ll s=0;
		vll order={0};
		while(ans.size()>1)
		{
			ll f1=ans.back();
			ans.pop_back();
			ll f2=ans.back();
			ans.pop_back();
			bool r1=are_connected({s},{f1});
			bool r2=are_connected({s},{f2});
			bool r3=are_connected({f1},{f2});
			if(r1 and r3)
			{
				order.pb(f1);
				order.pb(f2);
			}
			else if(r2 and r3)
			{
				order.pb(f2);
				order.pb(f1);
			}
			s=order.back();
		}
		if(ans.size()>0)
		{
			ll l=ans.back();
			bool r1=are_connected({s},{l});
			if(r1)
				order.pb(l);
		}
		return order;
	}
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:25:3: error: 'vll' was not declared in this scope; did you mean 'vpl'?
   25 |   vll order={0};
      |   ^~~
      |   vpl
longesttrip.cpp:37:5: error: 'order' was not declared in this scope
   37 |     order.pb(f1);
      |     ^~~~~
longesttrip.cpp:42:5: error: 'order' was not declared in this scope
   42 |     order.pb(f2);
      |     ^~~~~
longesttrip.cpp:45:6: error: 'order' was not declared in this scope
   45 |    s=order.back();
      |      ^~~~~
longesttrip.cpp:52:5: error: 'order' was not declared in this scope
   52 |     order.pb(l);
      |     ^~~~~
longesttrip.cpp:54:10: error: 'order' was not declared in this scope
   54 |   return order;
      |          ^~~~~