博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ACM训练二B题
阅读量:6309 次
发布时间:2019-06-22

本文共 2150 字,大约阅读时间需要 7 分钟。

这是比赛后打的题目,思路很清晰:申明一个结构体,将输入的数复制在这个结构体数组中,排序后比对下标,找到变动的首下标和尾下标,再看这段是否逆序了。

Being a programmer, you like arrays a lot. For your birthday, your friends have given you an array a consisting of ndistinct integers.

Unfortunately, the size of a is too small. You want a bigger array! Your friends agree to give you a bigger array, but only if you are able to answer the following question correctly: is it possible to sort the array a (in increasing order) by reversing exactly one segment of a? See definitions of segment and reversing in the notes.

Input

The first line of the input contains an integer n (1 ≤ n ≤ 105) — the size of array a.

The second line contains n distinct space-separated integers: a[1], a[2], ..., a[n] (1 ≤ a[i] ≤ 109).

Output

Print "yes" or "no" (without quotes), depending on the answer.

If your answer is "yes", then also print two space-separated integers denoting start and end (start must not be greater than end) indices of the segment to be reversed. If there are multiple ways of selecting these indices, print any of them.

Sample Input

Input
3 3 2 1
Output
yes 1 3
Input
4 2 1 3 4
Output
yes 1 2
Input
4 3 1 2 4
Output
no
Input
2 1 2
Output
yes 1 1
#include 
#include
using namespace std;int a[100017];struct NUM{ int x,id;}b[100017];bool cmp(NUM x,NUM y){ return x.x < y.x;}int main(){ int n; cin >> n; for(int i = 1;i <= n;i++) { cin >> a[i]; b[i].x = a[i]; b[i].id = i; } sort(b+1,b+n+1,cmp); int i,j; for(i = 1;i <= n;i++) { if(b[i].id != i) { break; } } if(i == n+1) { cout << "yes" << endl << "1 1" << endl; return 0; } for(j = n;j > 0;j--) { if(b[j].id != j) { break; } } int tt = i;int t = j; while(i<=j) { if(a[i] != b[t--].x) { break; } i++; } if(i == j+1) { cout << "yes" << endl << tt << " " << j << endl; } else { cout << "no" << endl; } return 0;}

 

转载于:https://www.cnblogs.com/hhhhhhhhhhhhhhhhhhhhhhhhhhh/p/3874382.html

你可能感兴趣的文章
Kafka:ZK+Kafka+Spark Streaming集群环境搭建(十四)定义一个avro schema使用comsumer发送avro字符流,producer接受avro字符流并解析...
查看>>
分布式锁的几种实现方式
查看>>
solr 忽略大小写
查看>>
WEB前端资源代码:面试篇
查看>>
PHP面试题汇总
查看>>
[转]XNA 错误:No suitable graphics card found
查看>>
当 IDENTITY_INSERT 设置为 OFF 时,不能向表 'tb_User' 中的标识列插入显式值。
查看>>
[Web前端]CSS实现“不可选择,不可复制”面临的问题
查看>>
Linux学习笔记四--Bash Shell
查看>>
objective-c判断两条线段相交
查看>>
NYOJ-2 括号配对问题
查看>>
SocketException: java.net.BindException: Address already in use
查看>>
SQLSERVER中的AWE功能
查看>>
二分搜索及其扩展
查看>>
在 Asp.NET MVC 中使用 SignalR 实现推送功能
查看>>
北航 2012 秋季 软件工程课 M2 要求
查看>>
PHP5中的魔术方法
查看>>
一段代码,SQL注入猜解数据库用户密码
查看>>
wcf 基础教程 契约 Contract 控制xml输出 数据契约DataContract序列化前身 XmlSerializer xml序列化...
查看>>
概率中国一种没有语料字典的分词方法
查看>>