제출 #271724

#제출 시각아이디문제언어결과실행 시간메모리
271724HalitEaster Eggs (info1cup17_eastereggs)C++17
0 / 100
1 ms512 KiB
#include <bits/stdc++.h>
#define max(xx,yy) (xx > yy ? xx : yy)
#define min(xx,yy) (xx > yy ? yy : xx)
#define all(x) x.begin(), x.end()
using namespace std;

int query( vector< int > islands);

int findEgg(int n, vector< pair<int, int> > bridges){
	int ans = 0;
	for(int i = 0;i < n;++i){
		vector< int > v = { i+1 };
		ans += query(v);
	}
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...