eastereggs.cpp:6:14: error: conversion from 'double' to 'long unsigned int' in a converted constant expression
6 | int color[2e5+5];
| ~~~^~
eastereggs.cpp:6:14: error: could not convert '(2.0e+5 + (double)5)' from 'double' to 'long unsigned int'
eastereggs.cpp:6:14: error: size of array 'color' has non-integral type 'double'
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:27:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int i=0 ; i<bridges.size() ; i++){
| ~^~~~~~~~~~~~~~~