题目链接

  • 题意:

    给一个长度为n的字符串,每次删除字母同样切连续的串,假设有多个,删除最左边的、最长的串。每次删除输出串的字母,每一个字母的下标(1-n)

    N (1 ≤ N ≤
    106),串仅仅包含red (‘R’),
    green (‘G’) or blue (‘B’)
  • 分析:

    题目比較麻烦,分析一下须要的任务:

    1、每次找到最长串——优先队列

    2、删除最长串后,须要合并两側的串(假设字母同样)——加Hash的链表,set(超时)

    3、每次删除须要知道这一个区间的下标都是谁——加Hash的链表,set(超时)
C++通过,G++超时……
const int MAXN = 1100000;

struct Node
{
int pos, len;
char val;
Node *nxt, *pre;
Node (int p = 0, int n = 0, char v = 0) : pos(p), len(n), val(v) {}
bool operator< (const Node& rhs) const
{
return pos < rhs.pos;
}
void erase()
{
pre->nxt = nxt;
nxt->pre = pre;
}
} nd[MAXN], pt, fst, lst;
int tot; struct HeapNode
{
int val, pos;
HeapNode (int v = 0, int p = 0) : val(v), pos(p) {}
bool operator< (const HeapNode& rhs) const
{
if (val != rhs.val)
return val < rhs.val;
return pos > rhs.pos;
}
} vt; priority_queue<HeapNode> q;
char ipt[MAXN];
bool vis[MAXN];
Node* to[MAXN], *pit, *pl, *pr;
int nxt[MAXN], pre[MAXN]; void init(int n)
{
REP(i, n)
{
nxt[i] = i + 1;
if (i)
pre[i] = i - 1;
}
}
void erase(int l, int r)
{
int p = pre[l], n = nxt[r];
nxt[p] = n;
pre[n] = p;
} int main()
{
while (~RS(ipt))
{
fst.val = -1; fst.nxt = &lst; fst.pre = NULL;
lst.val = -2; lst.pre = &fst; lst.nxt = NULL;
CLR(vis, false);
while (!q.empty())
q.pop();
tot = 0;
int len = strlen(ipt);
init(len + 2); nd[tot++] = Node(1, 1, ipt[0]);
FF(i, 1, len)
{
if (ipt[i] == nd[tot - 1].val)
nd[tot - 1].len++;
else
{
nd[tot].pos = i + 1;
nd[tot].len = 1;
nd[tot].val = ipt[i];
tot++;
}
}
fst.nxt = &nd[0]; nd[0].pre = &fst;
lst.pre = &nd[tot - 1]; nd[tot - 1].nxt = &lst;
REP(i, tot)
{
if (i != 0)
nd[i].pre = &nd[i - 1];
if (i != tot - 1)
nd[i].nxt = &nd[i + 1];
to[nd[i].pos] = &nd[i];
q.push(HeapNode(nd[i].len, nd[i].pos));
}
while (!q.empty())
{
vt = q.top();
q.pop();
if (vt.val == 1)
break;
if (vis[vt.pos])
continue;
pt.pos = vt.pos;
pit = to[vt.pos]; int idx = vt.pos;
printf("%c", ipt[vt.pos - 1]);
REP(i, vt.val)
{
printf(" %d", idx);
erase(idx, idx);
idx = nxt[pre[idx]];
}
puts(""); pl = pit->pre; pr = pit->nxt;
if (pl->val == pr->val)
{
pl->len += pr->len; vis[pr->pos] = true;
pr->erase(); q.push(HeapNode(pl->len, pl->pos));
}
vis[vt.pos] = true;
pit->erase();
}
}
return 0;
}

A Game with Colored Balls的更多相关文章

  1. Codeforces554 C Kyoya and Colored Balls

    C. Kyoya and Colored Balls Time Limit: 2000ms Memory Limit: 262144KB 64-bit integer IO format: %I64d ...

  2. codeforces 553A . Kyoya and Colored Balls 组合数学

    Kyoya Ootori has a bag with n colored balls that are colored with k different colors. The colors are ...

  3. Codeforces Round #309 (Div. 2) C. Kyoya and Colored Balls 排列组合

    C. Kyoya and Colored Balls Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contes ...

  4. Kyoya and Colored Balls(组合数)

    Kyoya and Colored Balls time limit per test 2 seconds memory limit per test 256 megabytes input stan ...

  5. C. Kyoya and Colored Balls(Codeforces Round #309 (Div. 2))

    C. Kyoya and Colored Balls Kyoya Ootori has a bag with n colored balls that are colored with k diffe ...

  6. 554C - Kyoya and Colored Balls

    554C - Kyoya and Colored Balls 思路:组合数,用乘法逆元求. 代码: #include<bits/stdc++.h> using namespace std; ...

  7. Codeforces Round #309 (Div. 2) C. Kyoya and Colored Balls

    Kyoya Ootori has a bag with n colored balls that are colored with k different colors. The colors are ...

  8. Codeforces554C:Kyoya and Colored Balls(组合数学+费马小定理)

    Kyoya Ootori has a bag with n colored balls that are colored with k different colors. The colors are ...

  9. codeforces 553A A. Kyoya and Colored Balls(组合数学+dp)

    题目链接: A. Kyoya and Colored Balls time limit per test 2 seconds memory limit per test 256 megabytes i ...

  10. codeforces 553 A Kyoya and Colored Balls

    这个题.比赛的时候一直在往dp的方向想,可是总有一个组合数学的部分没办法求, 纯粹组合数学撸,也想不到办法-- 事实上,非常显然.. 从后往前推,把第k种颜色放在最后一个,剩下的k球.还有C(剩余的位 ...

随机推荐

  1. SVN:冲突解决 合并别人的修改

    在项目中,基本不可避免多个人同时参与一个项目,因此就可能会出现多个人同时修改一个文件的情况,就不可避免的会出现冲突.svn已经很聪明了,如 果你和别人对于同一个文件的修改之间不存在重叠(比如你在文件最 ...

  2. struct2-json

    一.JSON是什么? :JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式.易于人阅读和编写,同时也易于机器解 析和生成.它基于JavaScript(Stan ...

  3. JNI_最简单的Java调用C/C++代码

    JNI_最简单的Java调用C/C++代码 JNI.是Java Native Interface的简称,中文是"Java本地调用".通过这种技术能够做到下面两点: Java程序中的 ...

  4. 走进C++程序世界------继承和派生

    继承和派生 继承是面向对象编程语言的最重要方面之一,正确的使用继承可编写出设计良好,容易于维护和扩展的应用程序.下面是在其他博客中的总结: ****************************** ...

  5. Ubuntu配置和修改IP地址

    Ubuntu配置和修改IP地址 1.修改配置文件/etc/network/interfacesroot@ubuntu:~# sudo gedit /etc/network/interfaces 添加以 ...

  6. GTID复制报错处理:Last_Error: Error 'Can't drop database 'test'; database doesn't exist' on query

    创建GTID主从连接: mysql, master_user; 报错显示: Slave_IO_Running: Yes Slave_SQL_Running: No Last_Error: Error ...

  7. RMAN备份各种物理文件

    RMAN运行脚本的方式:RMAN TARGET / @backup_db.rmanRMAN TARGET / cmdfile=backup_db.rman在RMAN中执行操作系统中保存的脚本:RMAN ...

  8. ubuntu下ffmpeg的安装,实现支持3gpp等转换

    最近上线的项目,语音格式转码需要调试3gpp,所以需要再spx,3gpp,3gp等格式之间转换,特记录基于ubuntu环境下的环境ffmpeg部署细则 安装测试环境:ubuntu 14.04 64bi ...

  9. 【初级坑跳跳跳】[NULLException] findViewById() id 引用错误,导致空指针

    在学习Intent页面切换,几个页面切换,导致view id 写错,写成另一个xml里的id去了,导致空指针异常 setContentView(R.layout.activity_second); B ...

  10. ubuntu安装体验

    本文记录一下昨晚及今天安装ubuntu系统的过程及体验 2016年6月13日09:36:11 更新 今天才有发现原来自己有个没填的坑 = = 那次安乌班图后第一感觉是很好用,新鲜了好几天,但是很快,新 ...