ACM
January 20, 2021

基础知识

基础知识

常用 OJ

常用语言 - C++

终于用回 C++ 了,上程序设计基础转 C 好累

万能头文件 #include<bits/stdc++.h>

等于以下头文件:

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
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>

(Visual Studio 不自带万能头文件)

时间(空间)复杂度

dddd懂的都懂

C++

STL

string · 字符串

头文件 : #include<string>
定义、赋值
1
2
3
string s1 = "1234";
string s2;
s2 = "1234";
读写
常用函数

vector

构造

vector<int>v1;

vector<string>v2("1234");

vecotr<int>v3(5,2);

vector<int>v4(v3);

常用函数
时间复杂度

queue · FIFO

构造

queue<int> q;

常用函数

stack · FILO

构造

stack<int> s;

常用函数

set · 集合

构造

set<int>s;

常用函数
时间复杂度

map · key - value

构造

​ 1.map<int,int>mp;

​ 2.map<string,int>mp;

常用函数
时间复杂度

list · 双向链表

构造

list<int>li;

常用函数
时间复杂度

sort · 快速排序

#include<algorithm>

用习惯 sort 后受够了 qsort 的折磨,现在终于回来了

qsort 到现在都还没学会,还好期末开卷照着书打

struct

重载运算符

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
#define _CRTSECURE_NOWARNINGS
#pragma warning(disable:4996)
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<cctype>
#include<algorithm>
#include<iostream>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<set>
#include<list>
using namespace std;

int n;

struct NODE
{
int a, b, c;
bool operator == (const NODE x) const
{
return this->a + b + c == x.a + x.b + x.c;
}
bool operator != (const NODE x) const
{
return this->a + b + c != x.a + x.b + x.c;
}
bool operator <= (const NODE x) const
{
return this->a + b + c <= x.a + x.b + x.c;
}
bool operator >= (const NODE x) const
{
return this->a + b + c >= x.a + x.b + x.c;
}
bool operator < (const NODE x) const
{
return this->a + b + c < x.a + x.b + x.c;
}
bool operator > (const NODE x) const
{
return this->a + b + c > x.a + x.b + x.c;
}
} s[1001];

bool cmp(NODE x, NODE y)
{
return x < y;
}

int main()
{
scanf("%d", &n);
for (int i = 1; i <= n; i++) scanf("%d%d%d", &s[i].a, &s[i].b, &s[i].c);
sort(s + 1, s + n + 1, cmp);
for (int i = 1; i <= n; i++) printf("%2d %d %d %d\n", s[i].a + s[i].b + s[i].c, s[i].a, s[i].b, s[i].c);
}

封装函数

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
#define _CRTSECURE_NOWARNINGS
#pragma warning(disable:4996)
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<cctype>
#include<algorithm>
#include<iostream>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<set>
#include<list>
using namespace std;

struct NODE
{
int a[1001];

void scan()
{
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
scanf("%d", &a[i]);
}
}

int sum(int x)
{
int SUM = 0;
for (int i = 1; i <= x; i++)
{
SUM += a[i];
}
return SUM;
}

} s;

int main()
{
s.scan();
printf("%d", s.sum(5));

return 0;

}

习题

A Rails · POJ 1363

B 表达式括号匹配 · 计蒜客 T1655

C Let the Balloon Rise · HDU 1004

D ACboy needs your help again! · HDU 1702

E 排名 · HDU 1236

F 人见人爱A-B · HDU 2034

G 水果 · HDU 1263

H 看病要排队 · HDU 1873

About this Post

This post is written by OwlllOvO, licensed under CC BY-NC 4.0.

#C++#STL