当前位置: 首页 > news >正文

Equal Sums

You are given kk sequences of integers. The length of the ii-th sequence equals to nini.

You have to choose exactly two sequences ii and jj (iji≠j) such that you can remove exactly one element in each of them in such a way that the sum of the changed sequence ii (its length will be equal to ni1ni−1) equals to the sum of the changed sequence jj (its length will be equal to nj1nj−1).

Note that it's required to remove exactly one element in each of the two chosen sequences.

Assume that the sum of the empty (of the length equals 00) sequence is 00.

Input

The first line contains an integer kk (2k21052≤k≤2⋅105) — the number of sequences.

Then kk pairs of lines follow, each pair containing a sequence.

The first line in the ii-th pair contains one integer nini (1ni<21051≤ni<2⋅105) — the length of the ii-th sequence. The second line of the ii-th pair contains a sequence of nini integers ai,1,ai,2,,ai,niai,1,ai,2,…,ai,ni.

The elements of sequences are integer numbers from 104−104 to 104104.

The sum of lengths of all given sequences don't exceed 21052⋅105, i.e. n1+n2++nk2105n1+n2+⋯+nk≤2⋅105.

Output

If it is impossible to choose two sequences such that they satisfy given conditions, print "NO" (without quotes). Otherwise in the first line print "YES" (without quotes), in the second line — two integers ii, xx (1ik,1xni1≤i≤k,1≤x≤ni), in the third line — two integers jj, yy (1jk,1ynj1≤j≤k,1≤y≤nj). It means that the sum of the elements of the ii-th sequence without the element with index xx equals to the sum of the elements of the jj-th sequence without the element with index yy.

Two chosen sequences must be distinct, i.e. iji≠j. You can print them in any order.

If there are multiple possible answers, print any of them.

Examples
input
Copy
2
5
2 3 1 3 2
6
1 1 2 2 2 1
output
Copy
YES
2 6
1 2
input
Copy
3
1
5
5
1 1 1 1 1
2
2 3
output
Copy
NO
input
Copy
4
6
2 2 2 2 2 2
5
2 2 2 2 2
3
2 2 2
5
2 2 2 2 2
output
Copy
YES
2 2
4 1
Note

In the first example there are two sequences [2,3,1,3,2][2,3,1,3,2] and [1,1,2,2,2,1][1,1,2,2,2,1]. You can remove the second element from the first sequence to get [2,1,3,2][2,1,3,2] and you can remove the sixth element from the second sequence to get [1,1,2,2,2][1,1,2,2,2]. The sums of the both resulting sequences equal to 88, i.e. the sums are equal.

 

学习了一发map和pair的用法。

由于我们是要求 sum[i1]-a[i1][j1]=sum[i2]-a[i2][j2]。

可以用map来保存每个sum[i1]-a[i1][j1].然后用pair记录i,j。

#include <bits/stdc++.h>
#define maxn 200005
using namespace std;
typedef long long ll;
map < int,pair<int,int> > mp;
int main()
{
   int n,i,j,m;
   scanf("%d",&n);
   for(i=1;i<=n;i++)
   {
       int sum=0;
       int a[maxn]={0};
       scanf("%d",&m);
       for(j=1;j<=m;j++)
       {
           scanf("%d",&a[j]);
           sum+=a[j];
       }
       for(j=1;j<=m;j++)
       {
           if(mp.count(sum-a[j]))
           {
               printf("YES\n");
               printf("%d %d\n",i,j);
               printf("%d %d\n",mp[sum-a[j]].first,mp[sum-a[j]].second);
               return 0;
           }
       }
       for(j=1;j<=m;j++)
       {
           mp[sum-a[j]]=make_pair(i,j);
       }
   }
   printf("NO\n");
    return 0;
}

  

转载于:https://www.cnblogs.com/zyf3855923/p/9126041.html

相关文章:

  • [编程之法]2.2 寻找和为定值的两个数
  • 智能对话机器人实战开发案例剖析(1)- 体系结构和分类
  • 第十二 包
  • java8 数据结构的改变(一)
  • 非正常卸载Chrome浏览器导致无法重新安装
  • FCC(ES6写法) Symmetric Difference
  • Thymeleaf系列五 迭代,if,switch语法
  • vi/vim基本使用命令
  • 排序算法(三)插入排序
  • 单词篇:(单词识记8~9)
  • LWIP学习笔记之传输控制协议(TCP)(七)
  • hadoop详细配置
  • LeetCode(56):合并区间
  • w10隐藏我的电脑中子文件夹
  • winform的Textbox设置只读之后使用ForeColor更改颜色
  • 网络传输文件的问题
  • HTML-表单
  • Java超时控制的实现
  • Java教程_软件开发基础
  • laravel with 查询列表限制条数
  • nodejs实现webservice问题总结
  • python 装饰器(一)
  • python大佬养成计划----difflib模块
  • Python语法速览与机器学习开发环境搭建
  • vue-cli3搭建项目
  • Vue--数据传输
  • Vue小说阅读器(仿追书神器)
  • zookeeper系列(七)实战分布式命名服务
  • 基于Dubbo+ZooKeeper的分布式服务的实现
  • 聊一聊前端的监控
  • 如何使用Mybatis第三方插件--PageHelper实现分页操作
  • 如何邀请好友注册您的网站(模拟百度网盘)
  • 微信开源mars源码分析1—上层samples分析
  • 我的zsh配置, 2019最新方案
  • 译米田引理
  • 【运维趟坑回忆录】vpc迁移 - 吃螃蟹之路
  • !$boo在php中什么意思,php前戏
  • #DBA杂记1
  • #Spring-boot高级
  • (3)Dubbo启动时qos-server can not bind localhost22222错误解决
  • (LNMP) How To Install Linux, nginx, MySQL, PHP
  • (pt可视化)利用torch的make_grid进行张量可视化
  • (Redis使用系列) SpirngBoot中关于Redis的值的各种方式的存储与取出 三
  • (ZT) 理解系统底层的概念是多么重要(by趋势科技邹飞)
  • (二)什么是Vite——Vite 和 Webpack 区别(冷启动)
  • (免费领源码)python#django#mysql公交线路查询系统85021- 计算机毕业设计项目选题推荐
  • (使用vite搭建vue3项目(vite + vue3 + vue router + pinia + element plus))
  • (五)c52学习之旅-静态数码管
  • (转)3D模板阴影原理
  • (转)德国人的记事本
  • (转载)虚幻引擎3--【UnrealScript教程】章节一:20.location和rotation
  • .NET 使用 ILMerge 合并多个程序集,避免引入额外的依赖
  • .net流程开发平台的一些难点(1)
  • .Net中wcf服务生成及调用
  • /proc/interrupts 和 /proc/stat 查看中断的情况