CodeForces 567C Geometric Progression【思维+map】

探讨了在给定整数序列中寻找长度为三且公比为特定整数k的几何数列子序列的方法。介绍了如何通过前后扫描并利用哈希映射技术来高效解决该问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. Geometric Progression
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp loves geometric progressions very much. Since he was only three years old, he loves only the progressions of length three. He also has a favorite integer k and a sequence a, consisting of n integers.

He wants to know how many subsequences of length three can be selected from a, so that they form a geometric progression with common ratio k.

A subsequence of length three is a combination of three such indexes i1, i2, i3, that 1 ≤ i1 < i2 < i3 ≤ n. That is, a subsequence of length three are such groups of three elements that are not necessarily consecutive in the sequence, but their indexes are strictly increasing.

A geometric progression with common ratio k is a sequence of numbers of the form b·k0, b·k1, ..., b·kr - 1.

Polycarp is only three years old, so he can not calculate this number himself. Help him to do it.

Input

The first line of the input contains two integers, n and k (1 ≤ n, k ≤ 2·105), showing how many numbers Polycarp's sequence has and his favorite number.

The second line contains n integers a1, a2, ..., an ( - 109 ≤ ai ≤ 109) — elements of the sequence.

Output

Output a single number — the number of ways to choose a subsequence of length three, such that it forms a geometric progression with a common ratio k.

Examples
Input
5 2
1 1 2 2 4
Output
4
Input
3 1
1 1 1
Output
1
Input
10 3
1 2 6 2 3 6 9 18 3 9
Output
6
Note

In the first sample test the answer is four, as any of the two 1s can be chosen as the first element, the second element can be any of the 2s, and the third element of the subsequence must be equal to 4.



题目大意:

一共给你N个数,再给你一个等比公项K.让你找三个数,使得其满足递增的同时,要满足其是一个以K为等比公项的等比数列。

问你能够找到几个符合条件的序列。


思路:


考虑第i个数,我们查询其前边有多少个a【i】/m记做sum1,查询其后边有多少个a【i】*m记做sum2.对应当前第i个数作为中间的数的时候,能够找到的序列个数为:sum1*sum2;

那么我们此时的任务就是从后向前map计数一波,设定数组b【i】,b【i】表示的是第i个数后边有多少个a【i】*m。

接下来再从前向后map计数一波,对应第i个数的贡献度就是:对应当前第i个数前边有多少个(a【i】/m)*b【i】;

过程累加即可。

时间复杂度O(n);


不过我的代码好搓啊。(我做的是正数搞一波,再负数搞一波啊...)


Ac代码:

#include<stdio.h>
#include<string.h>
#include<map>
using namespace std;
#define ll __int64
ll c[6000000];
ll a[6000000];
ll b[6000000];
int m;
ll Slove(int n)
{
    map<ll ,ll >s;
    ll output=0;
    for(int i=n-1; i>=0; i--)
    {
        b[i]=s[a[i]*m];
        s[a[i]]++;
    }
    s.clear();
    for(int i=0; i<n; i++)
    {
        if(a[i]%m==0)
        {
            output+=s[a[i]/m]*b[i];
        }
        s[a[i]]++;
    }
    return output;
}
int main()
{
    int n;
    while(~scanf("%d%d",&n,&m))
    {
        ll output=0;
        for(int i=0; i<n; i++)scanf("%I64d",&c[i]);
        int cont=0;
        memset(b,0,sizeof(b));
        memset(a,0,sizeof(a));
        for(int i=0; i<n; i++)
        {
            if(c[i]>=0)
            {
                a[cont++]=c[i];
            }
        }
        output+=Slove(cont);
        memset(b,0,sizeof(b));
        memset(a,0,sizeof(a));
        cont=0;
        for(int i=0;i<n;i++)
        {
            if(c[i]<0)
            {
                a[cont++]=-c[i];
            }
        }
        output+=Slove(cont);
        printf("%I64d\n",output);
    }
}








当前提供的引用内容并未提及关于Codeforces比赛M1的具体时间安排[^1]。然而,通常情况下,Codeforces的比赛时间会在其官方网站上提前公布,并提供基于不同时区的转换工具以便参赛者了解具体开赛时刻。 对于Codeforces上的赛事而言,如果一场名为M1的比赛被计划举行,则它的原始时间一般按照UTC(协调世界时)设定。为了得知该场比赛在UTC+8时区的确切开始时间,可以遵循以下逻辑: - 前往Codeforces官网并定位至对应比赛页面。 - 查看比赛所标注的标准UTC起始时间。 - 将此标准时间加上8小时来获取对应的北京时间(即UTC+8)。 由于目前缺乏具体的官方公告链接或者确切日期作为依据,无法直接给出Codeforces M1比赛于UTC+8下的实际发生时段。建议定期访问Codeforces平台查看最新动态更新以及确认最终版程表信息。 ```python from datetime import timedelta, datetime def convert_utc_to_bj(utc_time_str): utc_format = "%Y-%m-%dT%H:%M:%SZ" bj_offset = timedelta(hours=8) try: # 解析UTC时间为datetime对象 utc_datetime = datetime.strptime(utc_time_str, utc_format) # 转换为北京时区时间 beijing_time = utc_datetime + bj_offset return beijing_time.strftime("%Y-%m-%d %H:%M:%S") except ValueError as e: return f"错误:{e}" # 示例输入假设某场Codeforces比赛定于特定UTC时间 example_utc_start = "2024-12-05T17:35:00Z" converted_time = convert_utc_to_bj(example_utc_start) print(f"Codeforces比赛在北京时间下将是:{converted_time}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值