A 1140 Look-and-say Sequence

  简单模拟。可能要注意字符串第一个字符和最后一个字符的处理。

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <vector> using namespace std;
string numToString(int n)
{
string tmpStr;
int tmpNum;
while(n > )
{
tmpNum = n%;
n /= ;
tmpStr = (char)(tmpNum + '')+tmpStr;
}
return tmpStr;
}
int main()
{
int m, tmpNum;;
string tmpStr, rstStr;
char tmpC;
cin >> tmpStr >> m;
rstStr = tmpStr;
m--;
while(m--)
{
rstStr.clear();
tmpNum = ;
tmpC = 'A';
for(int i = ; i < tmpStr.size(); ++i)
{
if(tmpStr[i] != tmpC)
{
if(i > )
rstStr = rstStr + tmpC + numToString(tmpNum);
tmpNum = ;
tmpC = tmpStr[i];
}
else
tmpNum++;
if(i == tmpStr.size()-)
rstStr = rstStr + tmpC + numToString(tmpNum);
}
tmpStr = rstStr;
}
cout << rstStr;
return ;
}

A 1141 PAT Ranking of Institutions

  排序题目。成绩为了尽量无误差,先按A,B,T存储,最后计算并排序。

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <unordered_map>
#include <vector> using namespace std;
typedef struct SCHOOLINFO
{
int score;
int peopleCnt;
int AScore, BScore, TScore;
string id;
SCHOOLINFO():AScore(),BScore(),TScore(),peopleCnt(){}
SCHOOLINFO(string str):AScore(),BScore(),TScore(),peopleCnt(),id(str){}
}schoolinfo;
unordered_map<string, int> schoolFlagMap;
vector<schoolinfo> schoolDataVec;
bool cmp(schoolinfo a, schoolinfo b)
{
if(a.score != b.score)
return a.score > b.score;
else if(a.peopleCnt != b.peopleCnt)
return a.peopleCnt < b.peopleCnt;
else
return a.id < b.id;
}
void strToLower(string &tmpStr)
{
for(int i = ; i < tmpStr.size(); ++ i)
{
if(tmpStr[i] <= 'Z' && tmpStr[i] >= 'A')
tmpStr[i] = tmpStr[i]-'A'+'a';
}
}
int main()
{
int n, index = , tmpNum;
string tmpId, tmpSchool;
int tmpScore;
cin >> n;
while(n--)
{
cin >> tmpId >> tmpScore >> tmpSchool;
strToLower(tmpSchool);
if(schoolFlagMap[tmpSchool] == )
{
schoolFlagMap[tmpSchool] = index++;
schoolDataVec.push_back(SCHOOLINFO(tmpSchool));
}
tmpNum = schoolFlagMap[tmpSchool]-;
schoolDataVec[tmpNum].peopleCnt++;
if(tmpId[] == 'T')
schoolDataVec[tmpNum].TScore += tmpScore;
else if(tmpId[] == 'A')
schoolDataVec[tmpNum].AScore += tmpScore;
else
schoolDataVec[tmpNum].BScore += tmpScore;
}
for(auto it = schoolDataVec.begin(); it != schoolDataVec.end(); ++it)
it->score = it->AScore + it->BScore/1.5 + it->TScore*1.5;
sort(schoolDataVec.begin(), schoolDataVec.end(), cmp);
int tmpTWS = -, rankCnt = ;
cout << schoolDataVec.size() << endl;
for(int i = ; i < schoolDataVec.size(); ++i)
{
schoolinfo tmpSchool = schoolDataVec[i];
if(tmpSchool.score != tmpTWS)
rankCnt = i+;
cout << rankCnt << " " << tmpSchool.id << " " <<tmpSchool.score << " " <<tmpSchool.peopleCnt << endl;
tmpTWS = schoolDataVec[i].score;
}
return ;
}

A 1142 Maximal Clique

  读懂题目就行,写一个判断是否与所给的其它各点连通的函数。

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <unordered_map>
#include <vector> using namespace std;
#define MAX_SIZE 210
int route[MAX_SIZE][MAX_SIZE]={};
int Nv, Ne, M;
vector<int> cliqueVec;
bool judge(int u)
{
for(auto it = cliqueVec.begin(); it != cliqueVec.end(); ++it)
{
if(*it == u)
continue;
if(route[*it][u] == )
return false;
}
return true;
}
int main()
{
cin >> Nv >> Ne;
int tmpSt, tmpEnd, tmpCnt, tmpNum;
for(int i = ; i <= Ne; ++i)
{
cin >> tmpSt >> tmpEnd;
route[tmpSt][tmpEnd] = ;
route[tmpEnd][tmpSt] = ;
}
cin >> M;
while(M--)
{
cin >> tmpCnt;
bool dealFlag = false;
vector<int> visitFlag(Nv+, );
cliqueVec.resize(tmpCnt,);
for(int i = ; i < tmpCnt; ++i)
{
cin >> cliqueVec[i];
visitFlag[cliqueVec[i]] = ;
}
for(auto it = cliqueVec.begin(); it != cliqueVec.end(); ++it)
if(!judge(*it))
dealFlag = true;
if(dealFlag)
{
cout << "Not a Clique" << endl;
continue;
}
for(int i = ; i <= Nv; ++i)
if(visitFlag[i] == && judge(i))
dealFlag = true;
if(dealFlag)
{
cout << "Not Maximal" <<endl;
continue;
}
cout << "Yes" << endl;
}
return ;
}

A 1143 Lowest Common Ancestor

  这道题目,深刻理解树的前序遍历和BST的话,是道比较水的题目。

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <unordered_map>
#include <vector> using namespace std;
vector<int> treeKeyVec();
unordered_map<int, int> keyValMap;
int M, N;
void findLCA(int a, int b)
{
for(int i = ; i <N; ++i)
{
int tmpNum = treeKeyVec[i];
bool flag = false;
if(tmpNum == a)
printf("%d is an ancestor of %d.\n", a, b);
else if(tmpNum == b)
printf("%d is an ancestor of %d.\n", b, a);
else if(tmpNum < max(a,b) && tmpNum > min(a,b))
printf("LCA of %d and %d is %d.\n", a, b, tmpNum);
else
flag = true;
if(!flag)
return;
}
}
int main()
{
cin >> M >> N;
int tmpNum;
for(int i = ; i < N; ++i)
{
cin >> tmpNum;
keyValMap[tmpNum] = ;
treeKeyVec[i] = tmpNum;
}
int tmpNum1, tmpNum2;
for(int i = ; i < M; ++i)
{
cin >> tmpNum1 >> tmpNum2;
bool flag1 = true, flag2 = true;
if(keyValMap[tmpNum1] == )
flag1 = false;
if(keyValMap[tmpNum2] == )
flag2 = false;
if(!flag1 && !flag2)
printf("ERROR: %d and %d are not found.\n", tmpNum1, tmpNum2);
else if(!flag1)
printf("ERROR: %d is not found.\n", tmpNum1);
else if(!flag2)
printf("ERROR: %d is not found.\n", tmpNum2);
else
findLCA(tmpNum1, tmpNum2);
}
return ;
}

PAT 2018 春的更多相关文章

  1. 2018春招-今日头条笔试题-第四题(python)

    题目描述:2018春招-今日头条笔试题5题(后附大佬答案-c++版) #-*- coding:utf-8 -*- class Magic: ''' a:用于存储数组a b:用于存储数组b num:用于 ...

  2. 2018春招-今日头条笔试题-第三题(python)

    题目描述:2018春招-今日头条笔试题5题(后附大佬答案-c++版) 解题思路: 本题的做法最重要的应该是如何拼出‘1234567890’,对于输入表达试获得对应的结果利用python内置函数eval ...

  3. 2018春招-今日头条笔试题-第二题(python)

    题目描述:2018春招-今日头条笔试题5题(后附大佬答案-c++版) 解题思路: 利用深度优先搜索 #-*- coding:utf-8 -*- class DFS: ''' num:用于存储最后执行次 ...

  4. 2018春招-今日头条笔试题-第一题(python)

    题目描述:2018春招-今日头条笔试题5题(后附大佬答案-c++版) 解题思路: 要想得到输入的数字列中存在相隔为k的数,可以将输入的数字加上k,然后判断其在不在输入的数字列中即可. #-*- cod ...

  5. 2018春招实习笔试面试总结(PHP)

    博主双非渣本计算机软件大三狗一枚,眼看着春招就要结束了,现将自己所经历的的整个春招做一个个人总结. 首先就是关于投递计划,博主自己整理了一份各大公司的春招信息,包括网申地址,开始时间,结束时间,以及自 ...

  6. 链家2018春招Java工程师编程题题解

    Light 题目描述 在小红家里面,有n组开关,触摸每个开关,可以使得一组灯泡点亮.现在问你,使用这n组开关,最多能够使得多少个灯泡点亮呢? 输入 第一行一个n,表示有n组开关.接下来n行,每行第一个 ...

  7. 爱奇艺2018春招Java工程师编程题题解

    字典序最大子序列 题目描述 对于字符串a和b,如果移除字符串a中的一些字母(可以全部移除,也可以一个都不移除)就能够得到字符串b我们就称b是a的子序列. 例如."heo"是&quo ...

  8. 2018春招-今日头条笔试题5题(后附大佬答案-c++版)

    1题目描述 在n个元素的数组中,找到差值为k的除重后的数字对 输入描述 第一行:n和k,n表示数字的个数,k表示差值 第二行:n个整数 输入样例 输入: 5 2 1 5 3 4 2 输出: 3 说明: ...

  9. 2018春招-美团后台开发方向编程题 (python实现)

    第一题:字符串距离 题目: 给出两个相同长度的由字符 a 和 b 构成的字符串,定义它们的距离为对应位置不同的字符的数量.如串”aab”与串”aba”的距离为 2:串”ba”与串”aa”的距离为 1: ...

随机推荐

  1. Tomcat删除时问题——eclipse部署tomcat时弹出Resource'/Servers' does not exist

    如果你删除一个项目的Servers文件,或者相应文件损坏等,会出现错误, Resource '/Servers' does not exist 那么就需要把它在控制台出的Servers下所部署的Tom ...

  2. 最近学习总结 Nodejs express 获取url参数,post参数的三种方式

    express获取参数有三种方法:官网实例: Checks route params (req.params), ex: /user/:id Checks query string params (r ...

  3. 清北学堂模拟赛2 T2 ball

    题目大意: 多组数据,每组给定n,m,表示将n个小球放进m个箱子,每个小球均有两个箱子(可能相同)可放,求所有小球均放好的方案mod998244353的总数. 思路: 算是我和题解思路肥肠相近的一道题 ...

  4. vue的自定义

    自定义组件 组件是可以被复用的页面的零件,其实就是一个插件,只是在vue里叫组件 先看看别人的组件 vant element Mint iView 去试试上面的组件,都是有脚手架版和直接引入使用的版本 ...

  5. Day7 - C - Saddle Point ZOJ - 3955

    Chiaki has an n × m matrix A. Rows are numbered from 1 to n from top to bottom and columns are numbe ...

  6. python实现进程的三种方式及其区别

    在python中有三种方式用于实现进程 多进程中, 每个进程中所有数据( 包括全局变量) 都各有拥有⼀份, 互不影响 1.fork()方法 ret = os.fork() if ret == 0: # ...

  7. C. Basketball Exercise dp

    C. Basketball Exercise time limit per test 2 seconds memory limit per test 256 megabytes input stand ...

  8. windows下修改pip安装源的办法

    之前的随笔里有写过关于Mac OS和Linux的,现在需要用到Windows的系统, 修改方法:路径----> C:\Users\用户名\AppData\Roaming,在Roaming文件夹下 ...

  9. java第三周

  10. (转)让一个进程启动时Windbg自动Attach上去

    如何让一个进程启动时Windbg自动Attach上去 以IE为例:需要在注册表中创建一项HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\Current ...