competitive-programming

所属分类:数据结构
开发工具:C++
文件大小:0KB
下载次数:0
上传日期:2023-07-28 20:04:28
上 传 者sh-1993
说明:  竞争性编程,,
(competitive-programming,,)

文件列表:
.DS_Store (10244, 2023-09-06)
0:1_knapsack.cpp (661, 2023-09-06)
0:1_knapsack_atcoder1.cpp (674, 2023-09-06)
adjacency_matrix_&_list.cpp (789, 2023-09-06)
all_sieve_concept_in_one_q.cpp (1232, 2023-09-06)
balance_brackets.cpp (706, 2023-09-06)
bfs.cpp (677, 2023-09-06)
binary_exponentiation.cpp (1617, 2023-09-06)
binary_search.cpp (599, 2023-09-06)
bit_manipulation_qeus.cpp (1025, 2023-09-06)
bit_manipulation_ticks.cpp (1156, 2023-09-06)
check_prime_number.cpp (578, 2023-09-06)
comparator.cpp (458, 2023-09-06)
connected_components_graph.cpp (822, 2023-09-06)
detect_cycle_in_graph.cpp (701, 2023-09-06)
dfs.cpp (849, 2023-09-06)
dijkstra.cpp (987, 2023-09-06)
disjoint_set_union.cpp (697, 2023-09-06)
divisor.cpp (742, 2023-09-06)
floyd-warshall.cpp (850, 2023-09-06)
gcd_lcm.cpp (265, 2023-09-06)
generate_parenthesis_recursion_backtracking.cpp (724, 2023-09-06)
generate_subset_recursion_backtracking.cpp (853, 2023-09-06)
generate_subset_using_bit_masking.cpp (650, 2023-09-06)
inclusion_exclusion.cpp (1324, 2023-09-06)
inputf.in (51, 2023-09-06)
iterator.cpp (1107, 2023-09-06)
kruskals_algo.cpp (951, 2023-09-06)
lambda.cpp (497, 2023-09-06)
longest_increasing_subsequence.cpp (506, 2023-09-06)
maps.cpp (665, 2023-09-06)
matrix-chain-multiplication.cpp (1270, 2023-09-06)
mmi_question.cpp (907, 2023-09-06)
modular_multiplicative_inverse.cpp (938, 2023-09-06)
monk_problem.cpp (524, 2023-09-06)
nesting_vector.cpp (1707, 2023-09-06)
outputf.in (4, 2023-09-06)
pair.cpp (565, 2023-09-06)
playing_with_bits.cpp (708, 2023-09-06)
... ...

# Competitive-Programming C++ template: ``` /** * author: israk_kayum **/ #include using namespace std; // Macros for frequently used commands #define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); #define debug(x) cerr << #x << " = " << (x) << endl; // Typedefs for commonly used data types typedef long long ll; typedef vector vi; typedef vector vll; typedef pair pii; typedef pair pll; // Constants const int MOD = 1e9 + 7; const int INF = 1e9; const ll LLINF = 1e18; // Main function int main() { fastio; // Your code here return 0; } ```

近期下载者

相关文件


收藏者