This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//TASK: https://cw.felk.cvut.cz/courses/a4b33alg/task.php?task=keyservers | |
#include <vector> | |
#include <cstdio> | |
#include <stack> | |
#include <cstdlib> | |
#ifdef WIN32 | |
int getchar_unlocked() { return getchar(); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//TASK: https://cw.felk.cvut.cz/courses/a4b33alg/task.php?task=cinemas | |
#include <iostream> | |
#include <cstdio> | |
#include <vector> | |
#define arr std::vector | |
using namespace std; | |
#define min(a, b) ((a)<(b)?(a):(b)) |
NewerOlder