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.
32 lines
386 B
32 lines
386 B
2 years ago
|
#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;
|
||
|
}
|