You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
386 B
31 lines
386 B
#include <iostream>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
typedef vector<unsigned> Input;
|
|
|
|
Input parse()
|
|
{
|
|
Input data;
|
|
return data;
|
|
}
|
|
|
|
unsigned p1(const Input &input)
|
|
{
|
|
(void)input;
|
|
return 0;
|
|
}
|
|
|
|
unsigned p2(const Input &input)
|
|
{
|
|
(void)input;
|
|
return 0;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
Input input = parse();
|
|
cout << p1(input) << endl;
|
|
cout << p2(input) << endl;
|
|
}
|
|
|