
ACM
qq_42060170
(1) Your interest in the technology
(2) Your ability to innovate
(3) How well you think creatively
(4) How you adapt to changing requirements
(5) Your problem-solving approach
(6) Your analytical thinking skills
(7) How you handle feedback
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
图书管理系统(Borrowers,UVa230)
题目链接: 图书管理系统(UVa230)C++代码:#include <string>#include <set>#include <iostream>#include <cassert>#include <vector>#include <map>using namespace std;struct Bo...原创 2020-02-26 23:59:44 · 224 阅读 · 0 评论 -
打印队列(Printer Queue,UVa12100)
题目链接: 打印队列(UVa12100)C++代码:#include<queue>#include <cstdio>#include <cassert>using namespace std;int readint(){ int x; scanf("%d",&x); return x;}const int MAX...原创 2020-02-26 20:49:01 · 750 阅读 · 0 评论 -
循环小数(Repeating Decimals,UVa202)
Sample Input76 255 431 397Sample Output76/25 = 3.04(0)1 = number of digits in repeating cycle5/43 = 0.(116279069767441860465)21 = number of digits in repeating cycle1/397 = 0.(002518891687657...原创 2020-02-26 00:50:56 · 175 阅读 · 0 评论 -
IP网络(IP Networks,UVa1590)
Sample Input3194.85.160.177194.85.160.183194.85.160.178Sample Output194.85.160.176255.255.255.248C++代码:#include<stdio.h>#include <cstring>#include <algorithm>#include<...原创 2020-02-26 00:47:25 · 269 阅读 · 0 评论 -
谜题(Puzzle,UVa227)
Sample InputTRGSJXDOKIM VLNWPABEUQHCFARRBBL0ABCDEFGHIJKLMNOPQRSTUVWXAAALLLL0ABCDEFGHIJKLMNOPQRSTUVWXAAAAABBRRRLL0ZSample OutputPuzzle #1:T R G S JX O K L IM D V B NW P A EU ...原创 2020-02-15 23:17:12 · 312 阅读 · 0 评论 -
纵横字谜的答案(Crossword Answers,UVa232)
Sample Input2 2ATO6 7AIMDENMEONEUPONTOSOERINSAOR*IES*DEA0Sample Outputpuzzle #1:Across1.AT3.ODown1.A2.TOpuzzle #2:Across1.AIM4.DEN7.ME8.ONE9.UPON11.TO12.SO13.ERIN15.SA17...原创 2020-02-15 23:09:38 · 261 阅读 · 0 评论