摘要:
选择排序 #include <bits/stdc++.h> using namespace std; #define ll int const int INF = INT_MAX;/// int的极限值 const int maxn = 1e5+7; int mine = -INF; /// int 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; const int maxn=1e5+7; const int INF=0x3f3f3f3f; struct Huffman_Node{ int ans; int father; int left; int 阅读全文
摘要:
#include <bits/stdc++.h> #include <tr1/unordered_map> using namespace std; using std::tr1::unordered_map; #define ll long long const int maxn=1e6+7; c 阅读全文