套题链接:
http://codeforces.com/contest/581难度类型:
相对较易,AB较易,CD需要一些基础功力,EF比前面的题难了很多,F比E要容易一些,但也很难做。
A
类型:模拟
最小值是第一个答案,总数减去两个第一个答案除以二是第二个答案。
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <set>
#include <map>
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
LL powmod(LL a,LL b, LL MOD) {LL res=1;a%=MOD;for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}
// head
int main()
{
int a, b;
scanf("%d%d", &a, &b);
int x = min(a, b);
printf("%d %d\n", x, (a+b-x-x)/2);
return 0;
}
B
类型:模拟
预处理 i 后所有数字的最大值,然后再扫一遍输出答案。
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <set>
#include <map>
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
LL powmod(LL a,LL b, LL MOD) {LL res=1;a%=MOD;for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}
// head
const int N = 1E5+5;
int a[N];
int b[N];
int main()
{
int n;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
scanf("%d", a+i);
}
for (int i = n-1; i >= 0; i--) {
b[i] = max(b[i+1], a[i]);
}
for (int i = 0; i < n; i++) {
printf("%d%c", a[i] > b[i+1] ? 0 : b[i+1]+1-a[i], i==n-1 ? '\n' : ' ');
}
return 0;
}
C
类型:模拟,贪心
取到达下一个
10 的倍数最近的数先增加,所有数都是 10 的倍数后再扫一遍,尽量加。我的做法是映射到 Z10 中再扫,也可以排序贪心。
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <set>
#include <map>
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
LL powmod(LL a,LL b, LL MOD) {LL res=1;a%=MOD;for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}
// head
vector<int> v[10];
const int N = 1E+5;
int a[N];
int main()
{
int n, k;
scanf("%d%d", &n, &k);
for (int i = 0; i < n; i++) {
scanf("%d", a+i);
v[a[i]%10].pb(i);
}
for (int i = 9; i > 0; i--) {
int len = v[i].size();
for (int j = 0; j < len; j++) {
if (k >= (10-i)) {
a[v[i][j]] += 10-i;
k -= 10-i;
} else {
break;
}
}
}
for (int i = 0; i < n; i++) {
if (a[i]+k > 100) {
k -= 100-a[i];
a[i] = 100;
} else {
a[i] += k;
break;
}
}
int ans = 0;
for (int i = 0; i < n; i++) {
ans += a[i]/10;
}
printf("%d\n", ans);
return 0;
}
D
类型:模拟
三个矩形构成一个正方形,很容易看出只有三个连起来和上面一块下面两块两种情况。
可以枚举三个矩形的全排列,然后枚举每个矩形的旋转。
然后再去判断上述两种情况。
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <set>
#include <map>
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
LL powmod(LL a,LL b, LL MOD) {LL res=1;a%=MOD;for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}
// head
PII a[3];
PII b[3];
int per[3];
int main()
{
for (int i = 0; i < 3; i++) {
scanf("%d%d", &a[i].fi, &a[i].se);
per[i] = i;
}
do {
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 3; j++) {
b[j] = a[per[j]];
if ((1<<j)&i) swap(b[j].fi, b[j].se);
}
if (b[0].fi == b[1].fi && b[1].fi == b[2].fi && b[0].fi == b[0].se+b[1].se+b[2].se) {
printf("%d\n", b[0].fi);
for (int j = 0; j < 3; j++) {
for (int k = 0; k < b[j].se; k++) {
for (int p = 0; p < b[j].fi; p++) {
putchar(per[j]+'A');
}
puts("");
}
}
return 0;
}
if (b[0].fi == b[1].fi+b[2].fi && b[1].se == b[2].se && b[0].fi == b[1].se+b[0].se) {
printf("%d\n", b[0].fi);
for (int j = 0; j < b[0].se; j++) {
for (int k = 0; k < b[0].fi; k++) {
putchar(per[0]+'A');
}
puts("");
}
for (int j = 0; j < b[1].se; j++) {
for (int k = 0; k < b[1].fi; k++) {
putchar(per[1]+'A');
}
for (int k = 0; k < b[2].fi; k++) {
putchar(per[2]+'A');
}
puts("");
}
return 0;
}
}
} while (next_permutation(per, per+3));
puts("-1");
return 0;
}
F
类型:树形dp,好题
详细题解:http://blog.csdn.net/xc19952007/article/details/48812681