codeforces 507B. Painting Pebbles 解题报告

题目链接:http://codeforces.com/problemset/problem/509/B

题目意思:有 n 个piles,第 i 个 piles有 ai 个pebbles,用 k 种颜色去填充所有存在的pebbles,使得任意两个piles,用颜色c填充的pebbles数量之差 <= 1。如果不填充某种颜色,就默认数量为0。

  这样说还是比较难理解吧~~~以第三组数据为例:

5 43 2 4 3 5
YES1 2 31 31 2 3 41 3 41 1 2 3 4

第2个 pile 和 第5个 pile 的比较结果如下:

cha[1] = 1 (第2个pile用颜色1填充的数量是1,第5个pile为2)

  cha[2] = 1 (第2个pile用颜色2填充的数量是0,第5个pile为1)

  cha[3] = 0;  cha[4] = 1

要想差尽可能少,就要使得颜色尽量分散。就是说,假如有个 pile 的 pebble 数目为5,可选颜色有4种,这样填就是尽量分散: 1 2 3 4 1。每个pile都这样处理,然后比较两两pile以颜色c填充的数量是否大于1,这样用vector排序比较第一个和最后一个元素之差即可。最后就输出结果了。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstdlib>
 4 #include <cstring>
 5 #include <algorithm>
 6 #include <vector>
 7 using namespace std;
 8
 9 const int maxn = 100 + 5;
10 vector<int> v[maxn], ans[maxn];
11 vector<int>:: iterator vp1, vp2;
12 int a[maxn];
13 int cnt[maxn];
14
15 int main()
16 {
17     #ifndef ONLINE_JUDGE
18         freopen("in.txt", "r", stdin);
19     #endif // ONLINE_JUDGE
20
21     int n, k;
22     while (scanf("%d%d", &n, &k) != EOF) {
23         for (int j = 0; j <= maxn; j++) {
24             ans[j].clear();
25             v[j].clear();
26         }
27
28         for (int j = 0; j < n; j++) {
29             scanf("%d", &a[j]);
30             memset(cnt, 0, sizeof(cnt));
31             for (int i = 0; i < a[j]; i++) {
32                 int tmp = ((i+1) % k ? (i+1) % k : k);
33                 cnt[tmp]++;
34             }   // 填色
35             for (int i = 1; i <= k; i++) {
36                 ans[i-1].push_back(cnt[i]);
37                 v[i-1].push_back(cnt[i]);
38             }
39         }
40         bool flag = true;
41         for (int i = 0; i < k; i++) {
42             sort(v[i].begin(), v[i].end());
43             vp1 = v[i].begin();
44             vp2 = v[i].end()-1;
45             if (*vp2 - *vp1 > 1) {
46                 flag = false;
47                 break;
48            }
49         }
50         if (!flag)
51             printf("NO\n");
52         else {
53             printf("YES\n");
54             for (int i = 0; i < n; i++) {
55                 for (int j = 0; j < a[i]; j++) {
56                     printf("%d ", (j+1) % k ? (j+1) % k : k);
57                 }
58                 printf("\n");
59             }
60         }
61     }
62     return 0;
63 }
时间: 2024-11-05 09:54:52

codeforces 507B. Painting Pebbles 解题报告的相关文章

codeforces 591A. Wizards&#39; Duel 解题报告

题目链接:http://codeforces.com/problemset/problem/591/A 题目意思:其实看下面这幅图就知道题意了,就是Harry 和 He-Who-Must-Not-Be-Named 分别在走廊末端,各发射自己的impulse,其中Harry 的 impulse 速度为 p 米/s,He-...-Named (这个名字太长,姑且写成这样)为 q米/s.然后相遇之后各自回到它们的主人身边,再发射,问第二次相遇的时候,Harry的impulse 离他的位置距离是多少.

CodeForces 250B Restoring IPv6 解题报告

Description An IPv6-address is a 128-bit number. For convenience, this number is recorded in blocks of 16 bits in hexadecimal record, the blocks are separated by colons — 8 blocks in total, each block has four hexadecimal digits. Here is an example o

Codeforces Round #277.5 解题报告

又熬夜刷了cf,今天比正常多一题,比赛还没完但我知道F过不了了,一个半小时贡献给F还是没过--应该也没人Hack,写写解题报告吧= =! 解题报告如下: A题:选择排序直接搞,因为不要求最优交换次数,代码: #include <iostream> #include <algorithm> #include <cstdio> #include <memory.h> #include <vector> #include <stack> #

codeforces 495B. Modular Equations 解题报告

题目链接:http://codeforces.com/problemset/problem/495/B 题目意思:给出两个非负整数a,b,求出符合这个等式      的所有x,并输出 x 的数量,如果 x 有无限多个,那么输出 infinity. 想了半个多小时......有个地方想遗漏了. a mod x == b,等价于  a = k*x + b.设 mul = a - b,那么 k*x = mul,然后就不断枚举 mul 的因子,即 kx = mul.由于 mod 出来的结果为 b,那么

codeforces 495A. Digital Counter 解题报告

题目链接:http://codeforces.com/problemset/problem/495/A 这个题目意思好绕好绕~~好绕~~~~~,昨天早上做得 virtual 看不懂,晚上继续看还是,差点就想求救 XX 兽了,最终还是打住,尽量不要依赖人嘛.今天终于想到了,大感动 ~_~ 理解能力有待提高... One of the sticks of the counter was broken    这句话有一点误导人的成分,我刚开始就以为只有一条 stick 坏了= =,再看这句 becau

codeforces 577B. Modulo Sum 解题报告

题目链接:http://codeforces.com/problemset/problem/577/B 题目意思:就是给出 n 个数(a1, a2, ..., an) 和 m,问能不能从这 n 个数中选出一些数(不能为空),使得这些数的总和能整除 m . 实不相瞒,完全没想法...看题解,有个地方看都看不懂: n > m的情况.求助乌冬子,连带被批英语水皮 >___<.还是谢谢他啦,一步一步引导我. 貌似挺多人也有这个疑惑的.他说那个是特例优化,原谅我懒,直接摘抄吧~ 首先知道一些参数.

codeforces 496B. Secret Combination 解题报告

题目链接:http://codeforces.com/problemset/problem/496/B 题目意思:给出 n 位数你,有两种操作:1.将每一位数字加一(当某一位 > 9 时只保存个位数)   2.循环右移(最右边那个数字去到第一位上).问经过若个两种操作的组合后,得到的最小数值为多少. 我一开始用了vector来做= =,没有考虑到循环右移的情况.以为每一位从1加到9之后,找出最小的那个就可以..... 留个纪念(错误代码,别学,如果没有循环右移的限制,这个是对的) 1 #incl

codeforces 582A. GCD Table 解题报告

题目链接:http://codeforces.com/problemset/problem/582/A 网上很多题解,就不说了,直接贴代码= = 官方题解: http://codeforces.com/blog/entry/20692 1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #include <algorithm>

Codeforces Round#320 Div2 解题报告

Codeforces Round#320 Div2 先做个标题党,骗骗访问量,结束后再来写咯. codeforces 579A Raising Bacteria codeforces 579B Finding Team Member codeforces 579C A Problem about Polyline codeforces 579D "Or" Game codeforces 579E Weakness and Poorness codeforces 579F LCS Aga