Problem A ABCDEFG

Accept: 302    Submit: 442
Time Limit: 1000 mSec    Memory Limit : 32768 KB

 Problem Description

表弟今天的英语作业是练习书写前7个英文字母。勤奋的他写了一页、一页、又一页……

Yellowstar想知道表弟总共写了多少笔划。

(附:英文字母标准手写体教程:

 Input

输入第一行为一个正整数T。

接下去T行,每行为前七个英文字母的大小写形式组成的非空字符串,表示一份作业。

T<=20,每行长度<=100。

 Output

对于每份作业,输出一行,表示其中的笔划总数。

 Sample Input

2
ABCDEFG
abcdefg

 Sample Output

15
9
 
思路:比赛简单
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
using namespace std;
const int INF = 0x3f3f3f3f;
const int N = 1e5 + ;
int r1[] = {, , , , , , };
int r2[] = {, , , , , , };
int main() {
// freopen("in", "r", stdin);
int _; scanf("%d", &_);
while(_ --) {
int ans = ;
char s[];
scanf("%s", s);
int ls = strlen(s);
for(int i = ; i < ls; ++i) {
if(s[i] >= 'A' && s[i] <= 'Z') ans += r1[ s[i] - 'A' ];
else ans += r2[ s[i] - 'a' ];
}
printf("%d\n", ans);
}
return ;
}
Problem B 神奇的计算器

Accept: 14    Submit: 362
Time Limit: 1000 mSec    Memory Limit : 32768 KB

 Problem Description

为了帮助正在学习除法的表弟,Yellowstar想制作一个计算器,它能给出整数除法的完整结果。

具体来说,给出两个整数m、n:

如果m/n是整数或有限小数,那么直接输出它的值。

如果m/n是无限小数,那么输出小数点后到第一个最小循环节为止,并用”()”把最小循环节括起来。

 Input

输入第一行为一个正整数T,表示有T组测试数据。

接下去T行,每行为一组数据。每行两个正整数m、n,含义如上。

T<=15,1<=m,n<=2^31-1。

 Output

每个样例一行,输出答案。

注意计算器的屏幕最多能输出1 000 000个字符(包括小数点和括号,不包括结尾的换行),如果某组数据的结果超过了这个长度,那么该组数据输出”Too long”而不是原答案。

 Sample Input

4
4 2
1 5
123 765
2 1380779

 Sample Output

2
0.2
0.1(6078431372549019)
Too long
 
思路:题目要求的是最先出现的最小循环节,模拟除法,容易发现就是某个余数再次出现时会形成循环节。那么就是要记录余数是否出现过,用map或set会tle,那么就考虑hash
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
const int N = 2e6 + ;
const int mod = ;
char dig[N];
struct hashmap
{
int key[N], p[N];
int head[mod], nx[N], tot;
void init()
{
memset(head, -, sizeof head);
tot = ;
}
void ins(int x, int pos)
{
int h = x % mod;
key[tot] = x;
p[tot] = pos;
nx[tot] = head[h];
head[h] = tot++;
}
int query(int x)
{
int h = x % mod;
for(int i = head[h]; ~i; i = nx[i])
{
if(key[i] == x) return p[i];
}
return -;
}
};
hashmap myhash;
void solve(int x, int y)
{
int num = , px, py;
int qeu = x / y;
sprintf(dig, "%d", qeu);
num = strlen(dig);
int rem = x - qeu * y;
int flag = ;
if(rem == ) puts(dig);
else
{
myhash.init();
myhash.ins(rem, num + );
dig[num++] = '.';
while(num < 1e6 + )
{
qeu = (ll)rem * / y;
rem = (ll)rem * - qeu * y;
dig[num++] = qeu + ;
if(rem == ) break;
int v = myhash.query(rem);
if(v != -)
{
px = v;
flag = ;
break;
}
myhash.ins(rem, num);
}
dig[num] = ;
if(num >= 1e6) puts("Too long");
else if(flag == ) {
puts(dig);
}else {
for(int i = ; i < num; ++i) {
if(i == px) printf("(");
printf("%c", dig[i]);
}
puts(")");
}
}
}
int main()
{
int _;
scanf("%d", &_);
while(_ --)
{
int m, n;
scanf("%d%d", &m, &n);
solve(m, n);
}
}
Problem E 信心题

Accept: 37    Submit: 600
Time Limit: 2000 mSec    Memory Limit : 32768 KB

 Problem Description

给定一个含有n个数字的数列,每个数字都有一个值a[i](下标从1开始)。定义第i个数字和第j个数字间的距离dis(i,j)=abs(i-j)。

接下来给出q个询问,每次询问一个区间[l,r],要求求出一对数字(i,j)(l<=i<=j<=r),使得a[i]=a[j]并且dis(i,j)最大,由于这样的数对可能有多个,因此答案只要输出dis。

 Input

题目包含多组数据

每组数据第一行一个数n

第二行n个数字,表示数列a

第三行一个数字q,表示询问个数

接下来q行,每行两个数l,r,表示询问

N<=10^5

Q<=10^4

1<=a[i]<=10^3

1<=l<=r<=n

 Output

每个询问输出一个数组dis

 Sample Input

5
1 2 3 1 2
3
3 3
2 5
1 5
 

 Sample Output

0 3 3
 
思路:容易想到的做法是把所有的数分组后,对于每一个查询二分,复杂度为nmlog,会tle。对于nm的做法是离线处理,把所有的数分组后,设L[k]和R[k]分别为第k个查询对应的区间[l,r]中数ai最左端的位置和最右端的位置,那么ai对于第k个查询贡献的答案为R[k]-L[k]
L[k]只要分别对所有的查询按左端点排序然后依次分配编号即可,R[k]同理
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <vector>
#include <set>
#include <map>
using namespace std;
const int N = 1e5 + ;
struct Query {
int l, r, id;
Query() {}
Query(int l, int r, int id) : l(l), r(r), id(id) {}
};
vector<int> V[];
Query sl[N], sr[N], Q[N];
int n, q;
int a[N], L[N], R[N], ans[N];
void read() {
for(int i = ; i < n; ++i) scanf("%d", &a[i]);
scanf("%d", &q);
int l, r;
for(int i = ; i < q; ++i) {
scanf("%d%d", &l, &r);
--l; --r;
Q[i] = Query(l, r, i);
sl[i] = sr[i] = Q[i];
}
}
int cmp1(Query a, Query b) { return a.l < b.l; }
int cmp2(Query a, Query b) { return a.r > b.r; }
void init() {
for(int i = ; i <= ; ++i) V[i].clear();
memset(ans, , sizeof ans);
sort(sl, sl + q, cmp1);
sort(sr, sr + q, cmp2);
for(int i = ; i < n; ++i) V[ a[i] ].push_back(i);
} void solve() {
for(int i = ; i <= ; ++i) {
int k1 = , k2 = , k;
int sx = V[i].size();
if(sx == ) continue; for(int j = ; j < sx; ++j)
{
int p = V[i][j];
for(k = k1; k1 < q && k < q; ++k) if(p >= sl[k].l) L[ sl[k].id ] = p; else break;
k1 = k;
}
for(int j = sx-; j >= ; --j)
{
int p = V[i][j];
for(k = k2; k2 < q && k < q; ++k) if(p <= sr[k].r) R[ sr[k].id ] = p; else break;
k2 = k;
}
for(int k = k1; k < q; ++k) L[ sl[k].id ] = n;
for(int k = k2; k < q; ++k) R[ sr[k].id ] = ; for(int k = ; k < q; ++k) if(L[k] >= Q[k].l && L[k] <= Q[k].r && R[k] >= Q[k].l && R[k] <= Q[k].r)
ans[k] = max(ans[k], R[k] - L[k]);
}
}
int main() {
// freopen("in.txt", "r", stdin);
while(~scanf("%d", &n)) {
read();
init();
solve();
for(int i = ; i < q; ++i) printf("%d\n", ans[i]);
}
return ;
}
Problem F 邮票

Accept: 113    Submit: 523
Time Limit: 1000 mSec    Memory Limit : 32768 KB

 Problem Description

一天Bob收到一封信。Bob知道瓦罗兰大陆的邮局从A城市送信到B城市,乐意使用从A城市到B城市的邮票(A, B),或者使用从B城市到A城市的邮票(A, B),但是由于瓦罗兰大陆的城市繁多,所以并不是所有城市之间都能直接发送接收信件,换句话说,某两个城市想要通行邮件必须经过其他城市才行,但是邮局发送一次邮件的路途中从不会通过一座城市两次。

现在在Bob的信封上有N个邮票,Bob想知道这封信件是如何周转到达他手中的。

 Input

题目有多组数据。

每组数据第一行包含一个整数,N ( 2 <= N <= 1e5),代表信件上的N封邮票。

接下有N行数据。第 i 行数据包含两个整数 ui,vi,代表从城市ui发送到城市vi的邮票,ui代表城市的编号,每个城市的编号互不相同,(ui != vi ,1 <= ui, vi <= 1e9)。

输入数据保证有解。

 Output

每组样例的结果输出为一行, 每行包括N+1个被空格隔开的整数,代表着信件依次经过的城市编号。

若有多组可行答案,输出字典序最小的那组答案。

 Sample Input

2
1 100
100 2
3
3 1
100 2
3 2

 Sample Output

1 100 2
1 3 2 100
 
题意:给出n条边,其中每个点的度要么为2要么为1,度为1的点只有两个,即起点或终点。要求输出从起点到终点的一条字典序最小的路径,每个点只经过一次。就两种情况,选起点小的输出就可以了。由于点的编号比较大,要离散化。
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
using namespace std;
const int INF = 0x3f3f3f3f;
const int N = 1e5 + ;
int a[N], U[N], V[N];
int vis[N];
vector<int> g[N << ];
int main() {
// freopen("in", "r", stdin);
int n;
while(~scanf("%d", &n)) {
memset(vis, , sizeof vis);
for(int i = ; i <= n; ++i) g[i].clear(); int tot = ;
for(int i = ; i < n; ++i) {
scanf("%d%d", &U[i], &V[i]);
a[tot++] = U[i];
a[tot++] = V[i];
}
sort(a, a + tot);
tot = unique(a, a + tot) - a;
for(int i = ; i < n; ++i) {
int u = lower_bound(a, a + tot, U[i]) - a, v = lower_bound(a, a + tot, V[i]) - a;
g[u].push_back(v);
g[v].push_back(u);
}
int x = -, y = -;
for(int i = ; i < tot; ++i) {
if(g[i].size() == ) {
if(x == -) x = i;
else y = i;
}
}
if(a[x] > a[y]) swap(x, y);
printf("%d ", a[x]);
vis[x] = ;
x = g[x][];
for(int i = ; i < n - ; ++i) {
printf("%d ", a[x]);
vis[x] = ;
int u = g[x][];
int v = g[x][];
if(vis[u]) x = v;
else x = u;
}
printf("%d\n", a[x]);
}
return ;
}

FZU月赛20160416 ABEF的更多相关文章

  1. fzu月赛 2203 单纵大法好 二分

    Accept: 8    Submit: 18Time Limit: 5000 mSec    Memory Limit : 65536 KB  Problem Description 人在做,天在看 ...

  2. Fzu月赛11 老S的旅行计划 dij

    Description 老S在某城市生活的非常不自在,想趁着ICPC举办期间在省内转转.已知老S所在的省有N个城市,M条无向边(对于某一对结点可能出现重边).由于省内的交通相当糟糕,通过某条边所需要花 ...

  3. 【补】【FZU月赛】【20150515】【待续】

    A FZU-2054 水题,比较A,B双方的最大值即可. B FZU-2055 string,截取‘.’之前和之后然后和给出的文件夹名和拓展名比较就好了啊,不明白为什么那么多人错. 代码: #incl ...

  4. fzu月赛(2015.11)(思维)

    Problem 2205 据说题目很水 Sunday最近对图论特别感兴趣,什么欧拉回路什么哈密顿回路,又是环又是树.在看完一本书后,他对自己特别有信心,便找到大牛牛犇犇,希望他出一题来考考自己. 在遥 ...

  5. 【FZU】2152 文件系统

     Problem 2152 文件系统 Accept: 63    Submit: 126 Time Limit: 1000 mSec    Memory Limit : 32768 KB  Probl ...

  6. FZU Problem 2156 Climb Stairs DP

    http://acm.fzu.edu.cn/problem.php?pid=2156 题目大意: 爬楼梯,要爬到n这个位置,每次可以走x也可以走y,然后一定要经过A和B两点,求最终到达n的方案数. 思 ...

  7. HDU 2473 Junk-Mail Filter 并查集删除(FZU 2155盟国)

    http://acm.hdu.edu.cn/showproblem.php?pid=2473 http://acm.fzu.edu.cn/problem.php?pid=2155 题目大意: 编号0~ ...

  8. Lost Cows

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9669   Accepted: 6228 Description N (2 ...

  9. FZU2132 - LQX的作业(概率论)

    Problem Description LQX在做作业时遇到一个难题不会做,请你帮她计算一下:在N个独立地分布于0和1之间的随机变量排为非递减顺序之后,这些变量中第M个小于等于x的概率是多少? Inp ...

随机推荐

  1. JavaScript写在Html页面的<head></head>中

    JavaScript写在Html页面的<head></head>中 ----------------- <html> <head> <style ...

  2. LoadRunner 函数之 web_custom_request

    Allows you to create a custom HTTP request with any method supported by HTTP. List of Attributes URL ...

  3. Json.Net 数据解析

    参考资料: 随笔分类 - Json.Net系列

  4. 100多个基础常用JS函数和语法集合大全

    网站特效离不开脚本,javascript是最常用的脚本语言,我们归纳一下常用的基础函数和语法: 1.输出语句:document.write(""); 2.JS中的注释为//3.传统 ...

  5. Bash 是如何从环境变量中导入函数的

    在上文中曾说到: 所谓的环境变量的真实面目其实就是个任意字符串 Bash 在启动时会将 environ 数组中包含 = 号的字符串导入成为自己的变量 Bash 在启动外部命令时会将自己内部标记为环境变 ...

  6. 清北学堂模拟赛day7 数字碰撞

    /* clj:水题别人都满分你不是你就完了,所以说水题一定要细心一点,有这么几个细节:①前导零的处理,全是零的时候要特判②换行要注意,不要多大一行,剩下就是水水的模拟了 */ #include< ...

  7. PHP写文件函数

    /** * 写文件函数 * * @param string $filename 文件名 * @param string $text 要写入的文本字符串 * @param string $openmod ...

  8. Swift3.0P1 语法指南——函数

    原档:https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programmi ...

  9. C#常用类库(100多个)

    http://download.csdn.net/download/dxf1213cs/8238153

  10. ubuntu16.04 NVIDIA显卡驱动安装

    安装环境:Ubuntu16.04 1.打开终端,先删除旧的驱动: sudo apt-get purge nvidia* 2禁用自带的 nouveau nvidia驱动 (important!) 创建一 ...