Going Home

链接: 原网站.

题目

It was the third month of remote learning, Nastya got sick of staying at dormitory, so she decided to return to her hometown. In order to make her trip more entertaining, one of Nastya’s friend presented her an integer array a.

Several hours after starting her journey home Nastya remembered about the present. To entertain herself she decided to check, are there four different indices x,y,z,w such that ax+ay=az+aw.

Her train has already arrived the destination, but she still hasn’t found the answer. Can you help her unravel the mystery?

Input

The first line contains the single integer n (4≤n≤200000) — the size of the array.

The second line contains n integers a1,a2,…,an (1≤ai≤2.5⋅106).

Output

Print “YES” if there are such four indices, and “NO” otherwise.

If such indices exist, print these indices x, y, z and w (1≤x,y,z,w≤n).

If there are multiple answers, print any of them.

Examples

input

6
2 1 5 2 7 4

output

YES
2 3 1 6

input

5
1 3 1 9 20

output

NO

Note

In the first example a2+a3=1+5=2+4=a1+a6. Note that there are other answer, for example, 2 3 4 6.

In the second example, we can’t choose four indices. The answer 1 2 2 3 is wrong, because indices should be different, despite that a1+a2=1+3=3+1=a2+a3

题解

暴力搜索,奇奇怪怪,可可爱爱
本来想着绝壁会TLE的,结果好像不会,emm…
说是因为啥抽屉原理的样子,等再学一下重新来补题解

AC代码

pair<int,int> b[maxn];
int a[maxn];

signed main() {
	int n = rd();
	for(int i=1; i<=n; i++)a[i]=rd();
	for(int i=1; i<n; i++) {
		for(int j=i+1; j<=n; j++) {
			int sum=a[i]+a[j];//枚举结果 
			if(b[sum].first) {
				if(b[sum].first!=i&&b[sum].second!=i&&b[sum].first!=j&&b[sum].second!=j) {//a!=b!=c!=d 
					printf("YES\n%lld %lld %lld %lld\n",b[sum].first,b[sum].second,i,j);
					return 0;
				}
			} else b[sum]=make_pair(i,j);//成对 
		}
	}
	printf("NO\n"); 

	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这个错误通常是由于在路由守卫中进行了重定向而导致的。可能是因为用户未经身份验证就尝试访问需要身份验证的页面,或者是因为用户已经登录但仍然被重定向到登录页面。为了解决这个问题,你可以检查以下几个方面: 1.确保你的路由守卫中没有重定向到同一个页面,这会导致无限循环重定向。 2.确保你的路由守卫中的重定向逻辑正确,例如在用户未经身份验证时重定向到登录页面。 3.确保你的路由配置正确,例如确保你的路由路径和组件名称正确匹配。 4.如果你使用了token进行身份验证,确保你在登录成功后将token信息放入localStorage(或sessionStorage)中,然后再进行路由跳转。 以下是一个示例代码,演示如何在路由守卫中进行身份验证和重定向: ```javascript import router from './router' import { getToken } from './utils/auth' const whiteList = ['/login'] // 不需要身份验证的页面 router.beforeEach(async(to, from, next) => { const hasToken = getToken() if (hasToken) { // 如果已经登录 if (to.path === '/login') { // 如果访问的是登录页面 next({ path: '/' }) // 重定向到首页 } else { next() // 放行 } } else { // 如果未经身份验证 if (whiteList.indexOf(to.path) !== -1) { // 如果访问的是不需要身份验证的页面 next() // 放行 } else { next(`/login?redirect=${to.path}`) // 重定向到登录页面,并将目标页面路径作为参数传递 } } }) ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值