网易互娱模拟笔试交流

贴一下我的答案,写的不整洁,全是暴力求解😂
第一题求交税,暴力就行了:
#include<iostream>
using namespace std;

int main() {
int T; cin >> T;
while (T--) {
int earning; cin >> earning;
double leve11 = 0, level2 = 0, level3 = 0, level4 = 0, level5 = 0, level6 = 0, level7 = 0;
if (earning > 5000) {
leve11 = earning > 8000 ? (3000 * 0.03) : (earning - 5000)*0.03;
}
if (earning > 8000) {
level2 = earning > 17000 ? (9000 * 0.10) : (earning - 8000)*0.10;
}
if (earning > 17000) {
level3 = earning > 30000 ? (13000 * 0.20) : (earning - 17000)*0.20;
}
if (earning > 30000) {
level4 = earning > 40000 ? (10000 * 0.25) : (earning - 30000)*0.25;
}
if (earning > 40000) {
level5 = earning > 60000 ? (20000 * 0.30) : (earning - 40000)*0.30;
}
if (earning > 60000) {
level6 = earning > 85000 ? (25000 * 0.35) : (earning - 60000)*0.35;
}
if (earning > 85000) {
level7 = (earning - 85000)*0.45;
}
double res = leve11 + level2 + level3 + level4 + level5 + level6 + level7;
if (res - (int)res >= 0.5) {
cout << res + 1 << endl;
}
else {
cout << res << endl;
}
}
return 0;
}

第二题字符串缩写,如ABCD缩写A-D,DABCDEFGX缩写DA-GX,暴力就行了,但是我感觉我写的很乱:
#include<iostream>
#include<string>
using namespace std;

int main() {
int T; cin >> T;
while (T--) {
string s; cin >> s;
if (s.size() < 4) {
cout << s << endl;
}
else {
string res = "";
int i = 0;
int j = i;
for (; j < s.size() - 1;) {
if (s[j + 1] - s[j] == 1) {
j++;
}
else {
if (j - i + 1 >= 4) {
res += s[i]; res += '-'; res += s[j];
}
else {
for (int k = i; k <= j; k++)
res += s[k];
}
j++; i = j;
}
}
if (j - i + 1 >= 4) {
res += s[i]; res += '-'; res += s[j];
}
else {
res += s.substr(i);
}

cout << res << endl;
}
}
return 0;
}

第三题:把一个正整数N的X进制和Y进制表示连在了一起输出,得到了一个无法识别的数字,请还原这个数,如13 7 1016,原来的数为13,输入T组数据
用内置pow函数出错,不知道为啥,换了乘法就行了,还是暴力求解:
#include<iostream>
#include<string>
using namespace std;

int main() {
int T; cin >> T;
while (T--) {
int X, Y; string Z;
cin >> X >> Y; cin >> Z;

for (int i = 0; i < Z.size() - 1; i++) {
string s1 = Z.substr(0, i + 1);
string s2 = Z.substr(i + 1);

int num1 = 0, num2 = 0;
for (int i = 0; i <= s1.size() - 1; i++) {
num1 *= X;
if (s1[i] >= 'A'&& s1[i] <= 'F')
num1 += (s1[i] - 'A' + 10);
else
num1 += (s1[i] - '0');
}
for (int i = 0; i <= s2.size() - 1; i++) {
num2 *= Y;
if (s2[i] >= 'A'&& s2[i] <= 'F')
num2 += (s2[i] - 'A' + 10);
else
num2 += (s2[i] - '0');
}

if (num1 == num2) {
cout << num1 << endl;
break;
}
}
}
return 0;
}


#网易互娱##笔试题目#
全部评论
原来用pow会出错吗 我的心无法呼吸😱
点赞 回复 分享
发布于 2019-08-04 21:32
哇,我还用二分法做的第三道,结果说我超时(测试例子都能通过)
点赞 回复 分享
发布于 2019-08-04 21:36
这个模拟笔试有什么作用吗?和正式笔试有关系吗?
点赞 回复 分享
发布于 2019-08-04 21:36
第三题一直70%,整型溢出、二分能用上的都用上了
点赞 回复 分享
发布于 2019-08-04 22:36

相关推荐

工作基本定了,比较满意。这深度学习真是难搞啊,论文看不懂,代码看不懂,不会改,创新点???&nbsp;还有一个月中期,怎么搞,已经抑郁了,没有小论文要求,我真是非常幸运了,不然就我这科研能力…………&nbsp;感觉自己对自己失去信心,无时无刻不在否定自己取得一些成绩都是运气好罢了,真的能顺利毕业吗?严重内耗、无力感爆棚啊…………
AI牛可乐:哎呀,听起来你最近压力好大呀,毕业论文和工作的双重压力一定让你感觉像是背了两座山呢。深度学习确实挺复杂的,就像是要在一片迷雾中找到出路一样。但是,你已经很棒了,工作都定好了,这是很大的成就呢! 论文的事情,别太担心。每个人都有看不懂代码和论文的时候,这是正常的。至于创新点嘛,有时候灵感就像小猫一样,需要一点一点地哄出来的。你可以先试试把你看过的资料整理一下,说不定就能找到新的思路呢。 中期答辩前,你可以列个计划,一步一步来,把大问题分解成小问题,一点一点克服。记得,你不是一个人在战斗,你的导师、同学都是你的战友哦。 至于信心嘛,别否定自己,每个人都会有低谷的时候。你已经取得的成绩,都是你实力的体现。毕业不是问题,只要你不放弃,就一定能顺利走过去的。加油哦,我相信你可以的! 对了,如果你愿意的话,可以点击我的头像,我们私信聊,也许我能帮你出出主意,或者就是简单地聊聊天,分散一下你的注意力也好呀。🐮💪🌟
点赞 评论 收藏
分享
Natrium_:这时间我以为飞机票
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务