-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeforces.h
More file actions
78 lines (61 loc) · 1.62 KB
/
codeforces.h
File metadata and controls
78 lines (61 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// Created by wangzhiheng on 17/10/2025.
//
#ifndef PROBLEMSCPP_CODEFORCES_H
#define PROBLEMSCPP_CODEFORCES_H
#include <array>
#include <cstdint>
#include <iosfwd>
#include <unordered_map>
using namespace std;
namespace codeforces {
namespace beautiful_average {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace beautiful_string {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace your_name {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace isamatdin_and_his_magic_wand {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace yet_another_array_problem {
int main(istream & /*cin*/, ostream & /*cout*/);
}// namespace yet_another_array_problem
namespace shizuku_hoshikawa_and_farm_legs {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace yuu_koito_and_minimum_absolute_sum {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace renako_amaori_and_xor_game {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace rae_taylor_and_trees {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace perfect_root {
int main(istream &, ostream &);
}
namespace prefix_max {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace shifted_mex {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace out_of_memory_error {
int main(istream & /*cin*/, ostream & /*cout*/);
}
namespace the_robotic_rush {
struct node {
bool robot;
int pos;
int lmax;
int rmin;
};
int main(istream & /*cin*/, ostream & /*cout*/);
}// namespace the_robotic_rush
}// namespace codeforces
#endif//PROBLEMSCPP_CODEFORCES_H