摘要:
```cpp struct Matrix { static const int MAXN = 100; static const int MOD = 1e9 + 7; int n, a[MAXN + 5][MAXN + 5]; Matrix(int _n = 0) {n = _n;} int add(const int &a, const int &b)const { int c = a + b; 阅读全文
摘要:
整理了Codeforces常用的一些对数组的处理,包括对数组的离散化、去重、前缀后缀。 阅读全文
摘要:
A Changing Volume 题意:有个遥控器,有+1 1+2 2+5 5,6个键,不允许把音量调整至负数(当音量 using namespace std; typedef long long ll; void test_case() { int a, b; scanf("%d%d", &a, 阅读全文