这次的题目相对容易 但是智商依旧不够用

原因有三点 1.英文水平堪忧 2 逻辑不严密 3 细节掌握不够好

传送门

http://codeforces.com/contest/659

A 题目大意 圆环上有n个点 人从a位置出发 走b步 正负代表方向

(a+b%n+n)%n 需要特判 避免走到 0位置

观察数据范围 只需要(100*n+a+b-1)%n+1 还省去了特判

B 题目大意 有n个人的数据  m个地区 每个地区最少参赛2人 晋级2人

出线则输出 需要加赛 如第二个人和第三个人成绩一样  就输出?

#include<cstdio>
#include<map>
//#include<bits/stdc++.h>
#include<vector>
#include<stack>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<queue>
#include<cstdlib>
#include<climits>
#define PI acos(-1.0)
#define INF 0x3fffffff
using namespace std;
typedef long long ll;
typedef __int64 int64;
const ll mood=1e9+;
const int64 Mod=;
const double eps=1e-;
const int N=1e3+;
const int MAXN=;
typedef int rl;
inline void r(rl&num){
num=;rl f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<='')num=num*+ch-'',ch=getchar();
num*=f;
}
typedef pair<string,int> psi;
bool cmp(psi a,psi b)
{
return a.second>b.second;
}
int main()
{
vector<psi>v[];
int t;
psi tem;
int n,m;
r(n),r(m);
for(int i=;i<n;i++)
{
cin>>tem.first;
r(t);r(tem.second);
v[t].push_back(tem);
}
for(int i=;i<=m;++i)
{
if(v[i].size()<)
{
putchar('?');
}
else{
sort(v[i].begin(),v[i].end(),cmp);
if(v[i][].second==v[i][].second)
{
putchar('?');
}
else{
cout<<v[i][].first<<' '<<v[i][].first;
}
}
putchar('\n');
}
return ;
}

错误代码

错误原因 未在判断第二个人和第三个成绩是否一样前判断 人数是否大于2

在(——人数等2 第二个人成绩为0的时候 第三个人不存在默认为0 则相等 输出?)因此wa

改完AC

#include<cstdio>
#include<map>
//#include<bits/stdc++.h>
#include<vector>
#include<stack>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<queue>
#include<cstdlib>
#include<climits>
#define PI acos(-1.0)
#define INF 0x3fffffff
using namespace std;
typedef long long ll;
typedef __int64 int64;
const ll mood=1e9+;
const int64 Mod=;
const double eps=1e-;
const int N=1e3+;
const int MAXN=1e4+;
typedef int rl;
inline void r(rl&num){
num=;rl f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<='')num=num*+ch-'',ch=getchar();
num*=f;
}
typedef pair<string,int> psi;
bool cmp(psi a,psi b)
{
// if(a.second==b.second) return a.first<b.first;
return a.second>b.second;
}
int main()
{
vector<psi>v[MAXN];
int t;
psi tem;
int n,m;
r(n),r(m);
for(int i=;i<n;i++)
{
cin>>tem.first;
r(t);r(tem.second);
v[t].push_back(tem);
}
for(int i=;i<=m;++i)
{ sort(v[i].begin(),v[i].end(),cmp);
if(v[i].size()>&&v[i][].second==v[i][].second)
{
putchar('?');
}
else{
cout<<v[i][].first<<' '<<v[i][].first;
}
putchar('\n');
}
return ;
}

B——AC

这样写 还是不够好 我们注意到pair默认是先排一维从小到大然后二维依次

在输出的时候用pis 成绩*-1输入 ,成绩*-1从小到大即原成绩从大到小

就可以了

#include<bits/stdc++.h>
using namespace std;
const int MAX=1e5+;
int n,m,r,p;
vector<pair<int,string> > mp[MAX];
string s;
int main()
{
cin>>n>>m;
for (int i=;i<n;i++)
cin>>s>>r>>p,mp[r].push_back({-p,s});
for (int i=;i<=m;i++)
{
sort(mp[i].begin(),mp[i].end());
if (mp[i].size()> && mp[i][].first==mp[i][].first)
cout<<"?\n";
else
cout<<mp[i][].second<<" "<<mp[i][].second<<'\n';
}
}

某人简短AC码

C 题目大意 找1-n序列中 未标记的和<m

开始用set瞎搞错误 姿势错误

可以开个vis数组 没意思 其实开vis是有问题的 可惜他的数据弱233

于是去学习了一下set的姿势

把存在的的插入 以后的扫描只有一趟 所以不用再次插入

补题—Codeforces Round #346 (Div. 2) _智商欠费系列的更多相关文章

  1. Codeforces Round #346 (Div. 2)---E. New Reform--- 并查集(或连通图)

    Codeforces Round #346 (Div. 2)---E. New Reform E. New Reform time limit per test 1 second memory lim ...

  2. 构造水题 Codeforces Round #206 (Div. 2) A. Vasya and Digital Root

    题目传送门 /* 构造水题:对于0的多个位数的NO,对于位数太大的在后面补0,在9×k的范围内的平均的原则 */ #include <cstdio> #include <algori ...

  3. 水题 Codeforces Round #302 (Div. 2) A Set of Strings

    题目传送门 /* 题意:一个字符串分割成k段,每段开头字母不相同 水题:记录每个字母出现的次数,每一次分割把首字母的次数降为0,最后一段直接全部输出 */ #include <cstdio> ...

  4. 水题 Codeforces Round #299 (Div. 2) A. Tavas and Nafas

    题目传送门 /* 很简单的水题,晚上累了,刷刷水题开心一下:) */ #include <bits/stdc++.h> using namespace std; ][] = {" ...

  5. 水题 Codeforces Round #304 (Div. 2) A. Soldier and Bananas

    题目传送门 /* 水题:ans = (1+2+3+...+n) * k - n,开long long */ #include <cstdio> #include <algorithm ...

  6. 水题 Codeforces Round #303 (Div. 2) A. Toy Cars

    题目传送门 /* 题意:5种情况对应对应第i或j辆车翻了没 水题:其实就看对角线的上半边就可以了,vis判断,可惜WA了一次 3: if both cars turned over during th ...

  7. 水题 Codeforces Round #286 (Div. 2) A Mr. Kitayuta's Gift

    题目传送门 /* 水题:vector容器实现插入操作,暴力进行判断是否为回文串 */ #include <cstdio> #include <iostream> #includ ...

  8. 水题 Codeforces Round #306 (Div. 2) A. Two Substrings

    题目传送门 /* 水题:遍历一边先找AB,再BA,再遍历一边先找BA,再AB,两种情况满足一种就YES */ #include <cstdio> #include <iostream ...

  9. 贪心/思维题 Codeforces Round #310 (Div. 2) C. Case of Matryoshkas

    题目传送门 /* 题意:套娃娃,可以套一个单独的娃娃,或者把最后面的娃娃取出,最后使得0-1-2-...-(n-1),问最少要几步 贪心/思维题:娃娃的状态:取出+套上(2),套上(1), 已套上(0 ...

随机推荐

  1. python 之单例

    # 单例模式 class MySQL: __instance = None def __init__(self): self.host = '127.0.0.1' self.port = 3306 @ ...

  2. Python及Pycharm安装详细教程

    参考:http://blog.csdn.net/qq_29883591/article/details/52664478 首先我们来安装python 1.首先进入网站下载:点击打开链接(或自己输入网址 ...

  3. Asp.net后台创建HTML

    为了使HTML界面中的内容能根据数据库中的内容动态显示用户需要的内容,或者根据权限不同要显示同而实现页面内容的动态创建 使用HtmlGenericControl创建HTML标签 引入命名空间: usi ...

  4. TRANSFORM_TEX是做什么的

    简单来说,TRANSFORM_TEX主要作用是拿顶点的uv去和材质球的tiling和offset作运算,确保材质球里的缩放和偏移设置是正确的. (v.texcoord就是顶点的uv) 而_MainTe ...

  5. Ruby对象模型总结

    参考<Ruby元编程>,元编程,即 用来编写代码的代码 . 对象由一组实例变量和一个类的引用组成 对象的方法存在与对象所属的类中,类似js中的prototype,在ruby中准确的说,应该 ...

  6. 受保护的封装 protected

    补充内容:封装 私有化封装 private受保护的封装 protected公共的封装 public 注意:python目前不支持设定受保护的成员,但是开发者由约定的使用方式 受保护的封装:在成员名称前 ...

  7. 结束线程方法2 Java提供的中断机制

    package com.mozq.thread.interrupt; /** * 注意:调用interrupt()方法,并不会结束线程. * 结束线程的语义:需要我们自己使用3个中断方法构建. * * ...

  8. springMVC 类型转换

    springMVC 类型转换 https://www.cnblogs.com/hafiz/p/5812873.html

  9. 解决web项目无法部署到eclipse配置的本地tomcat

    一.发现问题 在eclipse中新建Dynamic Web Project,配置好本地的tomcat并写好代码后选择Run on Server,但运行后发现在tomcat的安装目录下的webapps并 ...

  10. UItableView动态行高 用这两句实现(可以自己计算数据来实现,一般在model中计算)

    // 动态行高 self.tableView.rowHeight = UITableViewAutomaticDimension; // 预估行高 self.tableView.estimatedRo ...