Dragon Balls Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10628 Accepted Submission(s): 3802 P ...
分类:
其他好文 时间:
2020-03-24 10:35:12
阅读次数:
64
/* 一开始第a个球在第a个城市 操作T a b,把第a个球所在城市的所有球移到b所在的城市 操作Q a 要求输出 第a个球在哪个城市 第a个球所在的城市有几个球 第a个球移动次数 */ #include #include #include #define move movee #define MA... ...
分类:
其他好文 时间:
2018-10-20 23:44:01
阅读次数:
175
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3635 题目描述: Dragon Balls Problem Description Five hundred years later, the number of dragon balls will ...
分类:
其他好文 时间:
2017-07-02 18:32:05
阅读次数:
169
Dragon BallsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4346Accepted Submission(s): 1658Five h...
分类:
其他好文 时间:
2015-08-01 18:54:11
阅读次数:
99
Problem Description
Five hundred years later, the number of dragon balls will increase unexpectedly, so it's too difficult for Monkey King(WuKong) to gather all of the dragon balls together.
...
分类:
其他好文 时间:
2015-05-11 14:53:46
阅读次数:
130
//
// main.cpp
// 5.1.6
//
// Created by Fangpin on 15/3/2.
// Copyright (c) 2015年 Fangpin. All rights reserved.
//
#include
#include
using namespace std;
int set[10003],sum[10003],times[10003]...
分类:
其他好文 时间:
2015-03-02 16:58:08
阅读次数:
172
1 /* 2 题意:有N个城市, 每一个城市都有一个龙珠(编号与城市的编号相同),有两个操作 3 T A ,B 将标号为A龙珠所在城市的所有的龙珠移动到B龙珠所在城市中! 4 5 思路:并查集 (压缩路径的时候将龙珠移动的次数进行更新) 6 */ 7 #include...
分类:
其他好文 时间:
2014-08-10 01:41:59
阅读次数:
150