結果

問題 No.1604 Swap Sort:ONE
ユーザー trineutrontrineutron
提出日時 2021-07-16 21:28:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 193,812 KB
最終ジャッジ日時 2025-01-23 01:21:30
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++)
    {
        int p;
        cin >> p;
        p--;
        a.at(p) = i;
    }
    int ans = 0;
    for (int i = 0; i < n; i++)
    {
        for (int j = i + 1; j < n; j++)
        {
            ans += a.at(i) > a.at(j);
        }
        }
    cout << ans << endl;
    return 0;
}
0