热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

usaco2004OpenCubeStacking堆方块题解

CubeStackingTimeLimit:2000MSMemoryLimit:30000K
Cube Stacking
Time Limit: 2000MS   Memory Limit: 30000K
Total Submissions: 17359   Accepted: 5991
Case Time Limit: 1000MS

Description

Farmer John and Betsy are playing a game with N (1 <= N <= 30,000)identical cubes labeled 1 through N. They start with N stacks, each containing a single cube. Farmer John asks Betsy to perform P (1<= P <= 100,000) operation. There are two types of operations: 
moves and counts. 
* In a move operation, Farmer John asks Bessie to move the stack containing cube X on top of the stack containing cube Y. 
* In a count operation, Farmer John asks Bessie to count the number of cubes on the stack with cube X that are under the cube X and report that value. 

Write a program that can verify the results of the game. 

Input

* Line 1: A single integer, P 

* Lines 2..P+1: Each of these lines describes a legal operation. Line 2 describes the first operation, etc. Each line begins with a 'M' for a move operation or a 'C' for a count operation. For move operations, the line also contains two integers: X and Y.For count operations, the line also contains a single integer: X. 

Note that the value for N does not appear in the input file. No move operation will request a move a stack onto itself. 

Output

Print the output from each of the count operations in the same order as the input file. 

Sample Input

6
M 1 6
C 1
M 2 4
M 2 6
C 3
C 4

Sample Output

1
0
2

Source

USACO 2004 U S Open

大意:
给定N个方块,排成一行,将它们编号1N。再给出P个操作:
M i j表示将i所在的那一堆移到j所在那一堆的顶上。
C i表示一个询问,询问i下面有多少个方块。
•你需要写一个程序来完成这些操作。

毫无疑问,这么大的数据范围,暴力肯定不行。而效率几乎为O(N)的并查集跳入了我们的视线。
我们设f[i]是每个方块所在位置的最底下方块的编号(好晕啊~),h[i]是每个方块之下有多少个方块(开始赋成0)。每次读入合并操作Y和X时:
                              首先找到X和Y的父亲(最底下的点),同时更新:f[fy]=fx。但是很快问题就来了——我们怎么更新f[fy]的高度呢?我们不能获知左边堆里最上面一层的h[i]!
咨询了RZZ后,我又开了个数组deep[i],表示i所在的堆内的高度(仅当i是底层的方格)。初始化时是1。进行如图的操作时,h[fy]=deep[fx],同时deep[fx]+=deep[fy]。
有人可能要问:右侧堆中底层的元素已经转移了,那么它上面的点呢?这里,要用到类似于线段树里的lazy-tag思想,即询问时再更新值。如果询问右侧某一点,我们只需在它寻找父亲、路径压缩时,再增加一个修改h的操作即可。

以下是AC代码:
#include
const int maxn=30001;
int f[maxn],h[maxn],deep[maxn];
using namespace std;
int get(int u)
{
  if (u==f[u]) return u;
  int temp=f[u];
  f[u]=get(f[u]);
  h[u]+=h[temp];
  return f[u];
}
void Union(int x,int y)
{
  f[x]=y;
  h[x]=deep[y];
  deep[y]+=deep[x];
  deep[x]=0;
}
int main()
{
  int n,x,y;scanf("%ld",&n);
  char enter,c;scanf("%c",&enter);
  for (int i=1;i0)
  {
    n--;
    scanf("%c",&c);
    if (c=='M')
    {
      scanf("%ld%ld",&x,&y);
      int fx=get(x);
      int fy=get(y);
      if (fx!=fy) Union(fx,fy);
    }
    else 
    {
      scanf("%ld",&x);
      int p=get(x);
      printf("%ld\n",h[x]);
    }
    scanf("%c",&enter);
  }
  return 0;
}


推荐阅读
  • 在尝试加载支持推送通知的iOS应用程序的Ad Hoc构建时,遇到了‘no valid aps-environment entitlement found for application’的错误提示。本文将探讨此错误的原因及多种可能的解决方案。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • LeetCode 204: 计算质数
    本题要求计算小于给定非负整数n的所有质数的数量。感谢@mithmatt为此问题提供测试案例。 ... [详细]
  • 本文通过分析一个具体的案例,探讨了64位Linux系统对32位应用程序的兼容性问题。案例涉及OpenVPN客户端在64位系统上的异常行为,通过逐步排查和代码测试,最终定位到了与TUN/TAP设备相关的系统调用兼容性问题。 ... [详细]
  • linux网络子系统分析(二)—— 协议栈分层框架的建立
    目录一、综述二、INET的初始化2.1INET接口注册2.2抽象实体的建立2.3代码细节分析2.3.1socket参数三、其他协议3.1PF_PACKET3.2P ... [详细]
  • Logging all MySQL queries into the Slow Log
    MySQLoptionallylogsslowqueriesintotheSlowQueryLog–orjustSlowLog,asfriendscallit.However,Thereareseveralreasonstologallqueries.Thislistisnotexhaustive:Belowyoucanfindthevariablestochange,astheyshouldbewritteninth ... [详细]
  • 本文是对《敏捷软件开发:原则、模式与实践》一书的深度解析,书中不仅探讨了敏捷方法的核心理念及其应用,还详细介绍了面向对象设计的原则、设计模式的应用技巧及UML的有效使用。 ... [详细]
  • Beetl是一款先进的Java模板引擎,以其丰富的功能、直观的语法、卓越的性能和易于维护的特点著称。它不仅适用于高响应需求的大型网站,也适合功能复杂的CMS管理系统,提供了一种全新的模板开发体验。 ... [详细]
  • HTML:  将文件拖拽到此区域 ... [详细]
  • 深入理解Java SE 8新特性:Lambda表达式与函数式编程
    本文作为‘Java SE 8新特性概览’系列的一部分,将详细探讨Lambda表达式。通过多种示例,我们将展示Lambda表达式的不同应用场景,并解释编译器如何处理这些表达式。 ... [详细]
  • Bootstrap Paginator 分页插件详解与应用
    本文深入探讨了Bootstrap Paginator这款流行的JavaScript分页插件,提供了详细的使用指南和示例代码,旨在帮助开发者更好地理解和利用该工具进行高效的数据展示。 ... [详细]
  • 探讨在内核中集成头文件的可行性与好处,特别是在处理外部模块和BPF应用时的作用。 ... [详细]
  • 本文档介绍了如何使用ESP32开发板在STA模式下实现与TCP服务器的通信,包括环境搭建、代码解析及实验步骤。 ... [详细]
  • 本文详细探讨了BCTF竞赛中窃密木马题目的解题策略,重点分析了该题目在漏洞挖掘与利用方面的技巧。 ... [详细]
  • 本文将在前几篇关于Android测试理论知识的基础上,通过ApiDemoTest实例详细探讨如何使用ApplicationTestCase进行Android应用测试。建议读者先阅读Android测试教程系列中的相关内容,以便更好地理解本文的实践部分。 ... [详细]
author-avatar
lzmhezy198344
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有