ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 1520-D, *1200
    코드포스 2021. 8. 8. 16:03
     

    Problem - 1520D - Codeforces

     

    codeforces.com

    문제

    • $n(1\leq n \leq 2\cdot 10^{5})$개의 수열 $a_{1}a_{2}...a_{n}(1\leq a_{i} \leq n)$이 주어진다
    • $i < j,\ a_{j}-a_{i}=j-i$인 좌표쌍 $(i,\ j)$의 개수는?

     

    $O(n)$

    조건식을 변형하면
    $$a_{j}-j=a_{i}-i$$

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    #include <bits/stdc++.h>
    #define endl "\n"
    #define loop(i, n) for(int i = 1; i <= n; i++)
    using namespace std;
    typedef long long ll;
     
    ll n;
     
    ll C(ll m)
    {
        if(m == 1return 0;
        else return m*(m-1)/2;
    }
     
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0), cout.tie(0);
     
        int t;
        cin >> t;
        int tmp;
        while(t--){
            map<intint> m;
            cin >> n;
            loop(i, n){
                cin >> tmp;
                m[tmp-i]++;
            }
     
            ll res = 0;
            for(const auto& e: m) res += C(e.second);
     
            cout << res << endl;
        }
     
        return 0;

     

    '코드포스' 카테고리의 다른 글

    1557-B, *1100  (0) 2021.08.10
    1512-C, *1200  (0) 2021.08.08
    1511-B, *1100  (0) 2021.08.08
    1454-D, *1300  (0) 2021.08.07
    1521-B, *1300  (0) 2021.08.01

    댓글

Designed by Tistory.