結果

問題 No.694 square1001 and Permutation 3
ユーザー aguroshouaguroshou
提出日時 2018-06-09 00:05:00
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 921 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 57,960 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-06-30 11:27:44
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,424 KB
testcase_01 AC 5 ms
7,296 KB
testcase_02 AC 5 ms
7,168 KB
testcase_03 AC 7 ms
7,296 KB
testcase_04 AC 7 ms
7,424 KB
testcase_05 AC 7 ms
7,296 KB
testcase_06 AC 7 ms
7,168 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include <algorithm>
#include<string>
#include <bitset>
using namespace std;

int main()
{
	//int a = 0, b = 0, c = 0, d = 0, e = 0, f = 0, g = 0, h = 0, ans = 0;
	int a = 0, b = 0, c = 0, d = 0, e = 0, f = 0, g = 0, h = 0, i = 0, j = 0, k = 0, l = 0, ans = 0;
	//cout << LONG_MAX << endl;
	int x[500001] = {};
	int y[500001] = {};
	//string s[1001];
	int n;
	cin >> n;
	
	for (a = 0; a < n; a++)
	{
		cin >> x[a];
	}
	for (a = 0; a < n; a++)
	{
		for (b = 0; b < n; b++)
		{
			if (a != b)
			{

				if (x[a] < x[b])
				{
					y[a]++;
				}
				else if (x[a] > x[b])
				{
					y[a]--;
				}
			}
		}
	}
	int cnt = 0;
	for (a = 0; a < n; a++)
	{
		for (b = 0; b < n - 1; b++)
		{
			if (x[b] > x[b + 1])
			{
				c = x[b];
				x[b] = x[b + 1];
				x[b + 1] = c;
				cnt++;
			}
		}
	}
	
	for (a = 0; a < n; a++)
	{

		cout << cnt << endl;
		cnt += y[a];
	}

	//cout << "aaaaaaa" << endl;
	return 0;
}
0