swap.cpp:62:2: error: extended character is not valid in an identifier
62 | InComponents[OldComp1].clear();
| ^
swap.cpp:62:5: error: extended character is not valid in an identifier
62 | InComponents[OldComp1].clear();
| ^
swap.cpp:62:8: error: extended character is not valid in an identifier
62 | InComponents[OldComp1].clear();
| ^
swap.cpp:63:2: error: extended character is not valid in an identifier
63 | InComponents[OldComp2].clear();
| ^
swap.cpp:63:5: error: extended character is not valid in an identifier
63 | InComponents[OldComp2].clear();
| ^
swap.cpp:63:8: error: extended character is not valid in an identifier
63 | InComponents[OldComp2].clear();
| ^
swap.cpp:64:2: error: extended character is not valid in an identifier
64 | Val[CurID]=w;
| ^
swap.cpp:64:5: error: extended character is not valid in an identifier
64 | Val[CurID]=w;
| ^
swap.cpp:64:8: error: extended character is not valid in an identifier
64 | Val[CurID]=w;
| ^
swap.cpp: In function 'void DSU(int, int, int, int)':
swap.cpp:54:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | for(int i=0;i<InComponents[CurRep[u]].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
swap.cpp:58:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
58 | for(int i=0;i<InComponents[CurRep[v]].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
swap.cpp:62:2: error: '\U000000a0' was not declared in this scope
62 | InComponents[OldComp1].clear();
| ^
swap.cpp:63:4: error: expected ';' before '\U000000a0'
63 | InComponents[OldComp2].clear();
| ^~
| ;
swap.cpp:64:4: error: expected ';' before '\U000000a0'
64 | Val[CurID]=w;
| ^~
| ;
swap.cpp: In function 'void init(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
swap.cpp:105:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
105 | for(int i=0;i<adj[Cur].size();i++){
| ~^~~~~~~~~~~~~~~~
swap.cpp:118:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
118 | for(int k=0;k<KRTID.size();k++){
| ~^~~~~~~~~~~~~
swap.cpp: In function 'int getMinimumFuelCapacity(int, int)':
swap.cpp:151:2: warning: label 'SkipPoint' defined but not used [-Wunused-label]
151 | SkipPoint:;
| ^~~~~~~~~