topcoder SRM712 Div1 LR

题目:

Problem Statement

    We have a cyclic array A of length n. For each valid i, element i-1 the left neighbor of element i. Additionally, element n-1 is the left neighbor of element 0. 



You are given two vector<long long>s s and t, each with n elements. Currently, we have A[i] = s[i] for each valid i. Our goal is to have A[i] = t[i] for each valid i. 



We can use two operations that modify the contents of A:
  • Operation L: Each element is increased by the value of its left neighbor.
  • Operation R: Each element is increased by the value of its right neighbor.
Note that all changes happen simultaneously. For example, if you use the operation L, the new value of A[7] is computed as the sum of the old value of A[7] and the old value of A[6]. 



If there is no way to reach the desired goal state, return "No solution". Otherwise return any valid way of doing so by using at most 100 operations. More precisely, return one valid sequence of operations encoded as a string of 'L's and 'R's. 



If there are multiple valid solutions, you may return any of them. In particular, you are not required to find the shortest valid solution. Any valid solution will be accepted as long as its length does not exceed 100. We can prove that if there is an valid solution then there must exist one with length at most 100.

Definition

    
Class:LR
Method:construct
Parameters:vector<long long>, vector<long long>
Returns:string
Method signature:string construct(vector<long long> s, vector<long long> t)
(be sure your method is public)

Limits

    
Time limit (s):2.000
Memory limit (MB):256
Stack limit (MB):256

Constraints

-s will contain between 2 and 50 elements, inclusive.
-s and t will contain the same number of elements.
-Each element in s will be between 0 and 1,000,000,000,000,000 (10^15) inclusive.
-Each element in t will be between 0 and 1,000,000,000,000,000 (10^15) inclusive.

Examples

0) 
    
{0,1,0,0,0}
{0,1,2,1,0}
Returns: "LL"
The first operation L will change A into {0,1,1,0,0} and then the second operation L will produce the array we wanted.
1) 
    
{0,0,0,1}
{0,1,0,0}
Returns: "No solution"
Even though A is cyclic, the precise indices matter. Here, s and t are two different configurations, and there is no valid way to change this s into this t.
2) 
    
{1,2,3,4,5,6,7,8,9,10}
{12,24,56,95,12,78,0,100,54,88}
Returns: "No solution"
Regardless of the type and order of operations all elements of A will always remain positive. However, t contains a zero. Therefore, t cannot be reached.
3) 
    
{1,0,0}
{11,11,10}
Returns: "RRRRR"
The sequence of five operations R will change the array A as follows: {1,0,0} -> {1,0,1} -> {1,1,2} -> {2,3,3} -> {5,6,5} -> {11,11,10}.
4) 
    
{1,1}
{562949953421312,562949953421312}
Returns: "RLLLRRRLLRRRLRLRRLLLLRLLRRLRRRLRRLRRLLRRRLLRRRLLL"
We start with A[0] = A[1] = 1, and we want A[0] = A[1] = 2^49. We can easily verify that in this case each operation changes A from {x, x} into {2x, 2x}. Therefore, any string of exactly 49 'L's and 'R's is a valid answer.
5) 
    
{0,0,0,0,0}
{0,0,0,1,0}
Returns: "No solution"
 
6) 
    
{123,456}
{123,456}
Returns: ""
 

This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.

思路:因为这是一个圆形数列,所以L和R所得的数列是差不多的,只是左移右移一次的区别。

  所以先判断进行sum次操作(通过数列值的和判断)。

  然后先进行sum次L操作,再判断把进行sum次操作后的数列k次右平移后能否得到t数列。

  能到得到的话则是进行了k次R,sum-k次L操作,LR的先后顺序没有关系。

  1 // BEGIN CUT HERE
  2 
  3 #include <conio.h>
  4 #include <sstream>
  5 /*
  6 */
  7 #define debuging
  8 #ifdef debuging
  9 #define FIN  {freopen("new.in" , "r" , stdin) ;}
 10 #define FOUT {freopen("new.out" , "w" , stdout) ;}
 11 #define OUT(x)  {cout<< #x << "  : " << x <<endl ;}
 12 #define ERR(x)  {cout<<"#error: "<< x ; while(1) ;}
 13 #endif
 14 // END CUT HERE
 15 #include <bits/stdc++.h>
 16 
 17 using namespace std;
 18 
 19 #define MP make_pair
 20 #define PB push_back
 21 typedef long long LL;
 22 typedef pair<int,int> PII;
 23 const double eps=1e-8;
 24 const double pi=acos(-1.0);
 25 const int K=1e6+7;
 26 const int mod=1e9+7;
 27 
 28 
 29 class LR
 30 {
 31 public:
 32     string construct(vector<long long> s, vector<long long> t)
 33     {
 34         int cnt=101;
 35         LL suma=0,sumb=0,sum=1;
 36         string ans;
 37         for(int i=0; i<s.size(); i++)
 38             suma+=s[i],sumb+=t[i];
 39         if(suma==sumb)  sum=0;
 40         for(int i=1; i<=100&&sum; i++)
 41             if((suma*=2) == sumb)
 42             {
 43                 sum=i;
 44                 break;
 45             }
 46         if(suma!=sumb)
 47             return "No solution";
 48         for(LL i=0,n=s.size(); i<sum; i++)
 49             for(LL j=0,ls=s[n-1],tmp; j<n; j++)
 50                 tmp=s[j],s[j]+=ls,ls=tmp;
 51         for(int i=0; i<=sum; i++)
 52         {
 53             if(s==t)
 54             {
 55                 cnt=i;break;
 56             }
 57             s.insert(s.begin(),s[s.size()-1]);
 58             s.erase(--s.end());
 59         }
 60         if(cnt>sum)
 61             return "No solution";
 62         if(sum==0)
 63             return "";
 64         for(int i=0; i<cnt; i++)
 65             ans+="R";
 66         for(int i=cnt; i<sum; i++)
 67             ans+="L";
 68         return ans;
 69     }
 70 
 71 
 72 // BEGIN CUT HERE
 73 public:
 74     void run_test(int Case)
 75     {
 76         if ((Case == -1) || (Case == 0)) test_case_0();
 77         if ((Case == -1) || (Case == 1)) test_case_1();
 78         if ((Case == -1) || (Case == 2)) test_case_2();
 79         if ((Case == -1) || (Case == 3)) test_case_3();
 80         if ((Case == -1) || (Case == 4)) test_case_4();
 81         if ((Case == -1) || (Case == 5)) test_case_5();
 82         if ((Case == -1) || (Case == 6)) test_case_6();
 83     }
 84 private:
 85     template <typename T> string print_array(const vector<T> &V)
 86     {
 87         ostringstream os;
 88         os << "{ ";
 89         for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\",";
 90         os << " }";
 91         return os.str();
 92     }
 93     void verify_case(int Case, const string &Expected, const string &Received)
 94     {
 95         cerr << "Test Case #" << Case << "...";
 96         if (Expected == Received) cerr << "PASSED" << endl;
 97         else
 98         {
 99             cerr << "FAILED" << endl;
100             cerr << "\tExpected: \"" << Expected << '\"' << endl;
101             cerr << "\tReceived: \"" << Received << '\"' << endl;
102         }
103     }
104     void test_case_0()
105     {
106         LL Arr0[] = {0,1,0,0,0};
107         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
108         LL Arr1[] = {0,1,2,1,0};
109         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
110         string Arg2 = "LL";
111         verify_case(0, Arg2, construct(Arg0, Arg1));
112     }
113     void test_case_1()
114     {
115         LL Arr0[] = {0,0,0,1};
116         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
117         LL Arr1[] = {0,1,0,0};
118         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
119         string Arg2 = "No solution";
120         verify_case(1, Arg2, construct(Arg0, Arg1));
121     }
122     void test_case_2()
123     {
124         LL Arr0[] = {1,2,3,4,5,6,7,8,9,10};
125         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
126         LL Arr1[] = {12,24,56,95,12,78,0,100,54,88};
127         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
128         string Arg2 = "No solution";
129         verify_case(2, Arg2, construct(Arg0, Arg1));
130     }
131     void test_case_3()
132     {
133         LL Arr0[] = {1,0,0};
134         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
135         LL Arr1[] = {11,11,10};
136         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
137         string Arg2 = "RRRRR";
138         verify_case(3, Arg2, construct(Arg0, Arg1));
139     }
140     void test_case_4()
141     {
142         LL Arr0[] = {1,1};
143         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
144         LL Arr1[] = {562949953421312,562949953421312};
145         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
146         string Arg2 = "RLLLRRRLLRRRLRLRRLLLLRLLRRLRRRLRRLRRLLRRRLLRRRLLL";
147         verify_case(4, Arg2, construct(Arg0, Arg1));
148     }
149     void test_case_5()
150     {
151         LL Arr0[] = {0,0,0,0,0};
152         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
153         LL Arr1[] = {0,0,0,1,0};
154         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
155         string Arg2 = "No solution";
156         verify_case(5, Arg2, construct(Arg0, Arg1));
157     }
158     void test_case_6()
159     {
160         LL Arr0[] = {123,456};
161         vector<long long> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
162         LL Arr1[] = {123,456};
163         vector<long long> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0])));
164         string Arg2 = "";
165         verify_case(6, Arg2, construct(Arg0, Arg1));
166     }
167 
168 // END CUT HERE
169 
170 };
171 // BEGIN CUT HERE
172 int main()
173 {
174     LR ___test;
175     ___test.run_test(3);
176     getch() ;
177     return 0;
178 }
179 // END CUT HERE

 

转载于:https://www.cnblogs.com/weeping/p/6739263.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/416867.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Spring Boot Quartz应用

目录 简单用法 配置cronSchedule的写法 简单用法 直接EnableScheduling后&#xff0c;方法上加上Scheduled(cron "0 */1 * * * * ")就行了。 此种方式需要写死时间、写死实现&#xff0c;生产环境不方便配置控制。 EnableScheduling SpringBootApplication publi…

2491 玉蟾宫

2491 玉蟾宫 时间限制: 1 s 空间限制: 64000 KB 题目等级 : 大师 Master 题目描述 Description有一天&#xff0c;小猫rainbow和freda来到了湘西张家界的天门山玉蟾宫&#xff0c;玉蟾宫宫主蓝兔盛情地款待了它们&#xff0c;并赐予它们一片土地。 这片土地被分成N*M个格子&am…

linux根目录空间占满问题排查

df -h 看到/目录已满 切换到根目录后看各个目录空间占用 cd / du -h -x --max-depth1 [rootlocalhost usr]# du -h -x --max-depth160M ./bin42M ./sbin460M ./lib207M ./lib64204M ./share0 ./etc0 ./games36K ./include12M ./libexec0 ./local0 ./src983M . 依次找到过大…

hihocoder 1183 割点和割边

链接&#xff1a; http://hihocoder.com/problemset/problem/1183 代码&#xff1a; 1 #include <map>2 #include <set>3 #include <cmath>4 #include <queue>5 #include <stack>6 #include <cstdio>7 #include <string>8 #include …

ubuntu navicat删除目录破解如何保留配置信息

配置信息存储位置&#xff1a; ~/.navicat64/user.reg 这个文件跟windows注册表导出的文件一样 下面分析配置中对我们有用的信息 字体设置&#xff1a; [Software\\PremiumSoft\\NavicatPremium] 1566266955 #time1d556fc440497e6 "AlreadyShowNavicateV121WelcomeS…

前端学习(2398):回顾

# 一、项目初始化## 使用 Vue CLI 创建项目> 注意&#xff1a;不要使用 Git Bash 执行项目创建操作&#xff0c;使用 cmd 或者 powershell 之类的工具。> 如果你还没有安装 VueCLI&#xff0c;或者版本低于 4&#xff0c;请执行下面的命令安装或是升级&#xff1a; >…

ubuntu经常提示:检测到系统程序出现问题

sudo vi /etc/default/apport 修改值 enabled0

前端学习(2399):关于编辑代码编辑器

代码段使用 可以对对应的编辑器去设置代码段

React Native 一些事

ReactJS 是否准备好 有时候我们常常需要监听 ReactJS 的的加载情况。 比如说&#xff0c;当获取一条推送&#xff0c;应用还没有起来&#xff0c;通过点击推送启动应用后&#xff0c;而推送中包含一些我们感兴趣的字段需要处理&#xff0c;我们如果直接把这条通知发送给 ReactJ…

ubuntu下 windows的zip文件打开,中文目录和文件名乱码

sudo apt-get install unar lsar xxx.zip 查看压缩文件内文件名 unar xxx.zip 解压文件 原因&#xff1a;windows下面文件名是GBK编码的&#xff0c;与linux不同。

前端学习(2411):name属性的作用

先纠正一下&#xff0c;这个问题的标题和内容不是一个问题&#xff0c;这里应该是涉及到两个知识点&#xff1a; 组件的 name路由的 name 下面我分别解释一下。 组件的 name 参考链接&#xff1a;https://router.vuejs.org/zh/guide/essentials/named-routes.html 组件的 nam…

HDU 1231 最大连续子序列

http://acm.hdu.edu.cn/showproblem.php?pid1231 Dp[i] 以a[i]元素结尾的子序列的最大和 记录 再记录一下起始位置即可 1 #include <iostream>2 #include <string.h>3 #include <stdio.h>4 using namespace std;5 6 int a[10007];7 int dp[10007];8 int st[…

Servlet生命周期与工作原理

http://www.cnblogs.com/cuiliang/archive/2011/10/21/2220671.html Servlet生命周期分为三个阶段&#xff1a; 1&#xff0c;初始化阶段 调用init()方法 2&#xff0c;响应客户请求阶段  调用service()方法 3&#xff0c;终止阶段  调用destroy()方法 Servlet初始化阶段&…

linux(ubuntu)给vmware中的windows虚拟机共享磁盘

设置vm——options——shared folders&#xff1a; 注意&#xff1a;共享的磁盘不能进行目录监听&#xff0c;比如微信小程序开发工具就无法打开这里面的项目。

javase模拟斗地主洗牌和发牌(54)

1、使用Arraylist集合: 1 package com.it18zhang.day08;2 3 import java.util.ArrayList;4 import java.util.Collections;5 6 public class PokerDemo {7 8 public static void main(String[] args) {9 // TODO Auto-generated method stub 10 //牌合 11 …

sudo apt update提示某个源超时

sudo apt update提示某个源超时 进入软件更新器&#xff0c;设置&#xff0c;选择其他软件&#xff0c;删除超时的连接。

jdk8 list转Map

函数&#xff1a;Collectors.toMapc 使用toMap()函数之后&#xff0c;返回的就是一个Map了&#xff0c;会需要key和value。 toMap()的第一个参数就是用来生成key值的&#xff0c;第二个参数就是用来生成value值的。 第三个参数用在key值冲突的情况下&#xff1a;如果新元素产…

微信小程序 三元运算 checked

预期效果&#xff1a; 根据用户性别&#xff0c;显示radio group&#xff0c;并将相应radio checked 代码如下&#xff1a; <view class"form-line"> <view wx:if"{{userInfo.gender 1 }}">性别&#xff1a;</view> <radio-gr…

C#-ToString格式化

Int.ToString(format): 格式字符串采用以下形式&#xff1a;Axx&#xff0c;其中 A 为格式说明符&#xff0c;指定格式化类型&#xff0c;xx 为精度说明符&#xff0c;控制格式化输出的有效位数或小数位数&#xff0c;具体如下&#xff1a; 格式说明符 说明示例输出C货币2.5.To…