最近看到牛课网美团一个编程竞赛,想着做做看,结果一写就是两天。。真是写不动了啊。话不多说,下面开始我的题解。
题目大致还是比较考察思维和代码能力(因为自己代码能力较弱,才会觉得比较考察代码能力吧= =!),难度由简到难变化也比较适中,有签到题、有算法实现,当然也有稍稍一点代码量的题。感谢美团点评,提供一套合适的题目~
音乐研究
题目描述
具体地说,就是在第二段音频中找到一个长度和第一段音频相等且是连续的子序列,使得它们的 difference 最小。两段等长音频的 difference 定义为:
difference = SUM(a[i] - b[i])2 (1 ≤ i ≤ n),其中SUM()表示求和
其中 n 表示序列长度,a[i], b[i]分别表示两段音频的音高。现在袋鼠先生想要知道,difference的最小值是多少?数据保证第一段音频的长度小于等于第二段音频的长度。
输入描述:
第一行一个整数n(1 ≤ n ≤ 1000),表示第一段音频的长度。
第二行n个整数表示第一段音频的音高(0 ≤ 音高 ≤ 1000)。
第三行一个整数m(1 ≤ n ≤ m ≤ 1000),表示第二段音频的长度。
第四行m个整数表示第二段音频的音高(0 ≤ 音高 ≤ 1000)。
输出描述:
输出difference的最小值
输入例子:
2 1 2 4 3 1 2 4
输出例子:
0
题解:
签到题,n*m<1e6,直接暴力枚举第二个数组的起点即可,复杂度O(n*m)。
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <set> 5 #include <cstring> 6 7 using namespace std; 8 9 const int kMaxN = 1000 + 5; 10 int n, m, a1[kMaxN], a2[kMaxN]; 11 12 int main(){ 13 //freopen("in.txt","r",stdin); 14 cin >> n; 15 for (int i = 1; i <= n; i ++) 16 cin >> a1[i]; 17 cin >> m; 18 for (int i = 1; i <= m; i ++) 19 cin >> a2[i]; 20 int ans = 1e9; 21 for (int i = 0; i <= m - n; i ++) { 22 int sum = 0; 23 for (int j = 1; j <= n; j ++) 24 sum += (a1[j] - a2[i + j]) * (a1[j] - a2[i + j]); 25 ans = min(ans, sum); 26 } 27 cout << ans << endl; 28 return 0; 29 }
锦标赛
题目描述
比赛有 n 个人参加(其中 n 为2的幂),每个参赛者根据资格赛和预赛、复赛的成绩,会有不同的积分。比赛采取锦标赛赛制,分轮次进行,设某一轮有 m 个人参加,那么参赛者会被分为 m/2 组,每组恰好 2 人,m/2 组的人分别厮杀。我们假定积分高的人肯定获胜,若积分一样,则随机产生获胜者。获胜者获得参加下一轮的资格,输的人被淘汰。重复这个过程,直至决出冠军。
现在请问,参赛者小美最多可以活到第几轮(初始为第0轮)?
输入描述:
第一行一个整数 n (1≤n≤ 2^20),表示参加比赛的总人数。 接下来 n 个数字(数字范围:-1000000…1000000),表示每个参赛者的积分。 小美是第一个参赛者。
输出描述:
小美最多参赛的轮次。
输入例子:
4 4 1 2 3
输出例子:
2
题解:
这个也比较好容易想到,很容易可以想到当小美被淘汰时,所有其他人的分数都是严格大于小美的分数的。所以直接将小美安排和所有与她分数低的人比赛即可,因为分数高的一定赢,因此可以认为她淘汰的人和被他淘汰的人淘汰的人,这些人分数都小于等于小美。
因此答案就是log2(count(score <= score[0])) score[0]是小美的分数。
1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 5 using namespace std; 6 7 int main(){ 8 //freopen("1.in","r",stdin); 9 int n,ans = 0,x0, x; 10 cin >> n; 11 for(int i = 0; i < n; i++){ 12 scanf("%d",&x); 13 if(i == 0) x0 = x; 14 ans += x <= x0; 15 } 16 cout << ((int)(log(ans * 1.0) / log(2.0))) << endl; 17 return 0; 18 }
优惠券
美团点评上有很多餐馆优惠券,用户可以在美团点评App上购买。每种优惠券有一个唯一的正整数编号。每个人可以拥有多张优惠券,但每种优惠券只能同时拥有至多一张。每种优惠券可以在使用之后继续购买。
当用户在相应餐馆就餐时,可以在餐馆使用优惠券进行消费。某人优惠券的购买和使用按照时间顺序逐行记录在一个日志文件中,运营人员会定期抽查日志文件看业务是否正确。业务正确的定义为:一个优惠券必须先被购买,然后才能被使用。
某次抽查时,发现有硬盘故障,历史日志中有部分行损坏,这些行的存在是已知的,但是行的内容读不出来。假设损坏的行可以是任意的优惠券的购买或者使用。
现在给一个日志文件,问这个日志文件是否正确。若有错,输出最早出现错误的那一行,即求出最大s,使得记录1到s-1满足要求;若没有错误,输出-1。
输入描述:
输入包含多组数据 m 分别表示 m (0 ≤ m ≤ 5 * 10^5) 条记录。 下面有m行,格式为: I x (I为Input的缩写,表示购买优惠券x); O x(O为Output的缩写,表示使用优惠券x); ? (表示这条记录不知道)。 这里x为正整数,且x ≤ 10^5 。
输出描述:
-1 或 x(1 ≤ x ≤ m) 其中x为使得1到x-1这些记录合法的最大行号。
输入例子:
0 1 O 1 2 ? O 1 3 I 1 ? O 1 2 I 2 O 1
输出例子:
-1 1 -1 -1 2
题解:
刚开始看到这题,就理所应当的认为只需要记录未知记录的个数,和每个优惠券的状态即可,如果在购买时发现还存在这种优惠券,就用未知记录代替,位置记录条数减一(消费同理)。
这样做的确是把不合理的购买或者消费记录给清除了,但是这样做法的一个最大问题就在于,它没有考虑购买的时机,即认为未知记录是万能的。但是例如连续两次买进同一种优惠券(中间没有未知记录),这样也是不合法的。因此,我们需要分情况讨论:
购买优惠券x时:
1.若之前没有交易过优惠券x或之前最后一次操作x已经将其卖出: 直接购买
2.前一次操作是买入优惠券x:
1)两次买进之间没有未知记录: 这条记录是不合法的
2)两次买进之间有多次(>=1)条未知记录: 取最早的一条未知记录充当x的使用记录。
使用优惠券x时:
1.之前对x的操作最后一次是买入优惠券x: 直接使用
2.前一次对x的操作是对x的使用(或没有对x的操作记录):
1)找出这两次使用操作的最早的一条未知记录,充当买入操作
2)若没有未知记录,这条记录不合法
上面为什么一定要取多天未知记录的最早的一条,读者自己可以思考下。下面我的代码用yhq变量保存最近的上一次操作优惠券x的位置,使用set集合来存放所有未知记录出现的位置(可以很方便的使用lower_bound函数)。
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <set> 5 #include <cstring> 6 7 using namespace std; 8 9 char c; 10 int n, x; 11 map<int, int> yhq; 12 set<int> unknown; 13 14 int main(){ 15 //freopen("in.txt","r",stdin); 16 while(~scanf("%d%*c", &n)) { 17 yhq.clear(); 18 unknown.clear(); 19 int has_error = -1; 20 for (int i = 1; i <= n; i ++) { 21 scanf("%c%*c", &c); 22 if(c == '?') { 23 unknown.insert(i); 24 continue; 25 } 26 scanf("%d%*c", &x); 27 if(has_error >= 0) { // has find ans 28 continue; 29 } 30 if(c == 'I') { 31 if(yhq[x] > 0) { 32 set<int>::iterator it = unknown.lower_bound(yhq[x]); 33 if(it == unknown.end()) has_error = i; 34 else unknown.erase(it); 35 } 36 yhq[x] = i; 37 } 38 else { 39 if(yhq[x] <= 0) { 40 set<int>::iterator it = unknown.lower_bound(-yhq[x]); 41 if(it == unknown.end()) has_error = i; 42 else unknown.erase(it); 43 } 44 yhq[x] = -i; 45 } 46 } 47 printf("%d ", has_error); 48 } 49 return 0; 50 }
送外卖
题目描述
给定两个整数数列 a[0]~a[n-1] 和 b[0]~b[n-1] ,在每个小区 i 里你有两种选择:
1) 选择a:向前 a[i] 个小区。
2) 选择b:向前 b[i] 个小区。
把每步的选择写成一个关于字符 ‘a’ 和 ‘b’ 的字符串。求到达小区n-1的方案中,字典序最小的字符串。如果做出某个选择时,你跳出了这n个小区的范围,则这个选择不合法。
• 当没有合法的选择序列时,输出 “No solution!”。
• 当字典序最小的字符串无限长时,输出 “Infinity!”。
• 否则,输出这个选择字符串。
字典序定义如下:串s和串t,如果串 s 字典序比串 t 小,则
• 存在整数 i ≥ -1,使得∀j,0 ≤ j ≤ i,满足s[j] = t[j] 且 s[i+1] < t[i+1]。
• 其中,空字符 < ‘a’ < ‘b’。
输入描述:
输入有 3 行。 第一行输入一个整数 n (1 ≤ n ≤ 10^5)。 第二行输入 n 个整数,分别表示 a[i] 。 第三行输入 n 个整数,分别表示 b[i] 。 −n ≤ a[i], b[i] ≤ n
输出描述:
输出一行字符串表示答案。
输入例子:
7 5 -3 6 5 -5 -1 6 -6 1 4 -2 0 -2 0
输出例子:
abbbb
题解:
终于通过所有数据了。
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <set> 5 #include <cstring> 6 7 using namespace std; 8 9 const int kMaxN = 1e5 + 5; 10 int n, a[kMaxN], b[kMaxN]; 11 int vis[kMaxN], ans_flag; 12 char str_ans[kMaxN]; 13 14 int dfs(char * ans, int step, int cur_node, bool flag) 15 { 16 if(cur_node < 1 || cur_node > n || vis[cur_node] > 1) 17 return 0; 18 if(vis[cur_node]) return 1; 19 if(cur_node == n) { 20 ans[step] = 0; 21 ans_flag = flag; 22 if(!flag) puts(ans); 23 return 2; 24 } 25 vis[cur_node] = 1; 26 ans[step] = 'a'; 27 int ret = dfs(ans, step + 1, cur_node + a[cur_node], flag); 28 if(ret == 2) return 2; 29 30 ans[step] = 'b'; 31 if(dfs(ans, step + 1, cur_node + b[cur_node], flag || ret==1) == 2) 32 return 2; 33 34 vis[cur_node] = 2; 35 return 0; 36 } 37 38 int main(){ 39 //freopen("in.txt","r",stdin); 40 cin >> n; 41 for (int i = 1; i <= n; i ++) 42 scanf("%d", &a[i]); 43 for (int i = 1; i <= n; i ++) 44 scanf("%d", &b[i]); 45 memset(vis, 0, sizeof(vis)); 46 if(dfs(str_ans, 0, 1, 0) != 2) 47 puts("No solution!"); 48 else if(ans_flag){ 49 puts("Infinity!"); 50 } 51 return 0; 52 }
数码
空间限制:32768K
题目描述
输入描述:
一行,两个整数 l 和 r (1 ≤ l ≤ r ≤ 10^9)。
输出描述:
输出9行。
第 i 行,输出数码 i 出现的次数。
输入例子:
1 4
输出例子:
4 2 1 1 0 0 0 0 0
题解:
首先,使用find_ans(n)计算1~n所有数的答案,那么最后的答案就是find_ans(r) - find_ans(l - 1)。
其次,要计算最高位为i的约数出现的次数。例如i=2,那么另cnt(x)为n以内约数包含x的数的个数,有:
ans[2] = cnt(2) + cnt(20) + cnt(21) + .... cnt(29) + cnt(200) + cnt(201) + ... 其中(x<=n)
所以我们分位数讨论
1位[i, i+1),2位[i*10, (i+1)*10), 3位[i*100, (i+1)*100)... ... 其中i取1~9。
我们知道,n以内包含约数x的自然数的个数为 n / x,即cnt(x) = n / x, 我们令ans[i]表示首位为i的答案,那么有:
ans[i] = sum{ sum{ n / x | i * 10^j <= x <= (i + 1) * 10^j} | 0 <= j <= 9}
上述步骤中可以看到对于每一个j, 即对于最高位为i且位数为(j+1)位的所有数x是连续的。 所以关键在于写一个函数,用于计算:
sigle_sum = (n / low) + (n / (low + 1)) + ... + (n / high) 其中 low = i * 10^j, high = (i + 1) * 10^j
可以看到上述计算单个答案sigle_sum 时,复杂度为O(10^j), 这对于一个位数较大(如j>=7)情况来说,枚举量依然非常巨大。
但是我们可以看到当j>=5时,low = i * 10^5, 有 n/low <= 10^4,所以我们可以枚举上述每一个式子的商(如商=x),再计算[low,high]区间中商为x的数有多少个,最后答案+ x * num(low, high, n, x),其中num(low, high, n, x)表示n/low, n/(low+1),,,n/(high)这些值中结果为x的个数,这个我们可以O(1)的计算出来。
最后计算sigle_sum总复杂度小于O(1e5)。
最后计算总答案复杂度:O(9 * 10 * 1e5),终于可以通过了~
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <set> 5 #include <cstring> 6 7 using namespace std; 8 9 typedef long long LL; 10 LL l, r; 11 LL a[10], b[10]; 12 13 // calc (n / low) + (n / (low + 1)) + ... + (n / high) 14 LL find_ans(LL low, LL high, LL n) 15 { 16 if(high < low) return 0; 17 LL result = 0; 18 if(high - low < 1e5) for (int i = low; i <= high; i ++) { 19 result += n / i; 20 } 21 else { 22 LL l = n / high, r = n / low; 23 for (int i = l; i <= r; i ++) { 24 LL lb = max(n / (i + 1), low), rb = min(n / i, high); 25 if(n / rb == n / lb) rb ++; 26 result += (rb - lb) * i; 27 } 28 } 29 return result; 30 } 31 32 void find_ans(LL n, LL * ans) 33 { 34 memset(ans, 0, sizeof(LL) * 10); 35 if(!n) return ; 36 for (int i = 1; i <= 9; i ++) { 37 LL mul_num = 1; 38 for (int j = 0; j <= 9 && mul_num <= n; j ++) { 39 ans[i] += find_ans(i * mul_num, min((i + 1) * mul_num - 1, n), n); 40 mul_num *= 10; 41 } 42 } 43 } 44 45 int main(){ 46 //freopen("in.txt","r",stdin); 47 cin >> l >> r; 48 find_ans(l - 1, a); 49 find_ans(r, b); 50 for (int i = 1; i <= 9; i ++) 51 cout << (b[i] - a[i]) << endl; 52 return 0; 53 }
围棋
题目描述
1. 棋盘19*19。
2. 棋子分黑白两色,双方各执一色。
3. 下法:每次黑或白着一子于棋盘的空点上。棋子下定后,不再向其他点移动。
4. 棋子的气:一个棋子在棋盘上,与它相邻的空点是这个棋子的“气”(这里相邻是指两个点有公共边)。 相邻的点上如果有同色棋子存在,这些棋子就相互连接成一个不可分割的整体,气合并计算。
相邻的点上如果有异色棋子存在,此处的气便不存在。
如果棋子所在的连通块失去所有的气,即为无气之子,不能在棋盘上存在。
5. 提子:把无气之子清理出棋盘的手段叫“提子”。提子有二种:
1) 着子后,对方棋子无气,应立即提取对方无气之子。
2) 着子后,双方棋子都呈无气状态,应立即提取对方无气之子。
6. 禁着点:棋盘上的任何一空点,如果某方在此下子,会使该子立即呈无气状态,同时又不能提取对方的棋子,这个点叫做“禁着点”,该方不能在此下子。
7. 禁止全局同形:无论哪一方,在成功进行了着子、提子操作后,棋盘局面不能和任何之前的局面相同。
你要做的是:输入一些操作,从空棋盘开始模拟这些操作。
对于每一步,若结果不正确,则输出对应的miss并且忽略这个操作,并在最后输出棋盘的局面。
输入描述:
第一行,测试数据组数≤100 第二行,每组测试数据,执行的步数 n ≤ 2000 然后 n 行 B x y W x y (1 ≤ x ≤ 19,1 ≤ y ≤ 19) 其中,二元组 x,y 表示围棋棋盘上第 x 行第 y 列对应的点。 输入数据保证是黑白轮流下的。
输出描述:
多行 对于miss的情况,输出是哪一种错误格式,其中: miss 1 表示下的位置已经有棋了 miss 2 表示违反规则6 miss 3 表示违反规则7 对于正常的操作,不用输出。 最后输出最终盘面。“B表示黑子,W表示白子,如果是空点的话,就输出'.'字符。”
输入例子:
1 12 B 1 3 W 1 2 B 2 4 W 2 1 B 1 1 W 2 3 B 3 3 W 3 2 B 1 1 W 2 3 B 2 2 W 2 3 对应的棋形是这样的:
输出例子:
miss 2 miss 2 miss 1 miss 3 .WB................ WB.B............... .WB................ ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ................... ...................
题解:
这个比较纯粹,模拟每一次操作,然后判断是否合法,没太多可讲之处,纯粹是考察代码实现能力。当然我也只是完成了这道题而已啦,代码风格和可读性还比较低。
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <set> 5 #include <cstring> 6 #include <vector> 7 #include <queue> 8 9 using namespace std; 10 11 const int kModNum = 1e9 + 7; 12 const int kBorderSize = 19; 13 const int dir[4][2] = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}}; 14 15 struct Board { 16 int arr[20][20]; 17 int hash_val; 18 bool operator == (const Board & another) const { 19 for (int i = 0; i < kBorderSize; i ++) { 20 for (int j = 0; j < kBorderSize; j ++) { 21 if(arr[i][j] != another.arr[i][j]) return false; 22 } 23 } 24 return true; 25 } 26 bool operator < (const Board & another) const { 27 return hash_val < another.hash_val; 28 } 29 }; 30 31 int T, n, x, y; 32 char op; 33 Board board, tmp; 34 map< int, set<Board> > mps; 35 int vis[kBorderSize][kBorderSize]; 36 37 38 void Reset() 39 { 40 memset(board.arr, 0, sizeof(board.arr)); 41 mps.clear(); 42 } 43 44 int MyHash(const Board & board) 45 { 46 int hash_num = 0; 47 for (int i = 0; i < kBorderSize; i ++) { 48 for (int j = 0; j < kBorderSize; j ++) { 49 hash_num = ((hash_num << 1) % kModNum + hash_num) % kModNum; 50 hash_num = (hash_num + board.arr[i][j]) % kModNum; 51 } 52 } 53 return hash_num; 54 } 55 56 bool OutBound(int nx, int ny) 57 { 58 return nx < 0 || nx >= kBorderSize || ny < 0 || ny >= kBorderSize; 59 } 60 61 bool ExistBoard(const Board board) 62 { 63 return mps.count(board.hash_val) && mps[board.hash_val].count(board); 64 } 65 66 bool IsDeadPiece(int x, int y, int piece_type) 67 { 68 memset(vis, false, sizeof(vis)); 69 queue<int> que; 70 que.push(x * kBorderSize + y); 71 vis[x][y] = true; 72 while(!que.empty()) { 73 int fr = que.front(); 74 que.pop(); 75 x = fr / kBorderSize; 76 y = fr % kBorderSize; 77 for (int i = 0; i < 4; i ++) { 78 int nx = x + dir[i][0], ny = y + dir[i][1]; 79 if(OutBound(nx, ny) || vis[nx][ny]) continue; 80 if(!board.arr[nx][ny]) { 81 return false; 82 } 83 if(board.arr[nx][ny] == piece_type) { 84 que.push(nx * kBorderSize + ny); 85 vis[nx][ny] = true; 86 } 87 } 88 } 89 return true; 90 } 91 92 void RemoveDeadPiece() 93 { 94 for (int i = 0; i < kBorderSize; i ++) { 95 for (int j = 0; j < kBorderSize; j ++) { 96 if(vis[i][j]) board.arr[i][j] = 0; 97 } 98 } 99 } 100 101 bool MovePiece() 102 { 103 int put_val = op == 'B' ? 1 : 2; 104 // 放下这颗棋子 105 board.arr[x][y] = put_val; 106 // 找是否能移除对手的棋子 107 bool can_remove = false; 108 for (int i = 0; i < 4; i ++) { 109 int nx = x + dir[i][0], ny = y + dir[i][1]; 110 if(OutBound(nx, ny) || board.arr[nx][ny] != 3 - put_val) 111 continue; 112 if(IsDeadPiece(nx, ny, board.arr[nx][ny])) { 113 can_remove = true; 114 } 115 } 116 // 不能移走对手的棋子,自己又是死棋,不能下在这 117 if(!can_remove && IsDeadPiece(x, y, put_val)) 118 return false; 119 // 吧对手的死棋移除 120 for (int i = 0; i < 4; i ++) { 121 int nx = x + dir[i][0], ny = y + dir[i][1]; 122 if(OutBound(nx, ny) || board.arr[nx][ny] != 3 - put_val) 123 continue; 124 if(IsDeadPiece(nx, ny, board.arr[nx][ny])) { 125 RemoveDeadPiece(); 126 } 127 } 128 board.hash_val = MyHash(board); 129 return true; 130 } 131 132 void PrintBoard(Board board) 133 { 134 for (int i = 0; i < kBorderSize; i ++) { 135 for (int j = 0; j < kBorderSize; j ++) { 136 if(!board.arr[i][j]) putchar('.'); 137 else if(board.arr[i][j] & 1) putchar('B'); 138 else putchar('W'); 139 } 140 puts(""); 141 } 142 } 143 144 int main(){ 145 //freopen("in.txt","r",stdin); 146 cin >> T; 147 while(T--) { 148 Reset(); 149 scanf("%d%*c", &n); 150 while(n --) { 151 scanf("%c %d %d%*c", &op, &x, &y); 152 x --; y --; 153 // 第一种错误, 位置已经存在棋子 154 if(board.arr[x][y]) { 155 puts("miss 1"); 156 continue; 157 } 158 tmp = board; 159 if(!MovePiece()) { 160 puts("miss 2"); 161 board = tmp; 162 continue; 163 } 164 if(ExistBoard(board)) { 165 puts("miss 3"); 166 board = tmp; 167 continue; 168 } 169 mps[MyHash(board)].insert(board); 170 } 171 PrintBoard(board); 172 } 173 return 0; 174 }