結果

問題 No.694 square1001 and Permutation 3
ユーザー aguroshouaguroshou
提出日時 2018-06-09 00:00:01
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 974 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 58,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 11:24:26
合計ジャッジ時間 6,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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[100001] = {};
	int y[100001] = {};
	//string s[1001];
	int n;
	cin >> n;
	for (a = 0; a < n; a++)
	{
		cout << y[a] << endl;
	}
	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