Submission #1438075


Source Code Expand

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "math.h"
#include "utility"
#include "string"
#include "map"
#include "unordered_map"
#include "iomanip"
#include "random"

using namespace std;
const long long int MOD = 1000000007;

long long int power(long long int x, long long int n, long long int M) {
	long long int tmp = 1;

	if (n > 0) {
		tmp = power(x, n / 2, M);
		if (n % 2 == 0) tmp = (tmp*tmp) % M;
		else tmp = (((tmp*tmp) % M)*x) % M;
	}
	return tmp;
}

long long int N, M, K, Q, W, H, L, R;
long long int ans;

using namespace std;


int main() {
	ios::sync_with_stdio(false);
	cin >> N;
	long long int num[100000];
	for (int i = 1; i <= N; i++) {
		cin >> num[i];
		num[i] = num[i] * MOD + i;
	}
	sort(num + 1, num + N + 1);
	for (int i = 1; i <= N; i++) {
		if (i > 1)cout << " ";
		cout << i*N;
	}
	cout << endl;
	for (int i = 1; i <= N; i++) {
		if (i > 1)cout << " ";
		cout << (N - i + 1)*N + num[i] % MOD;
	}
	cout << endl;
	return 0;
}

Submission Info

Submission Time
Task B - Construct Sequences
User olphe
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1122 Byte
Status AC
Exec Time 7 ms
Memory 768 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 22
Set Name Test Cases
Sample example0.txt, example1.txt, example2.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, example0.txt, example1.txt, example2.txt
Case Name Status Exec Time Memory
000.txt AC 2 ms 256 KB
001.txt AC 2 ms 256 KB
002.txt AC 2 ms 256 KB
003.txt AC 1 ms 256 KB
004.txt AC 2 ms 256 KB
005.txt AC 7 ms 768 KB
006.txt AC 2 ms 384 KB
007.txt AC 6 ms 768 KB
008.txt AC 4 ms 512 KB
009.txt AC 7 ms 768 KB
010.txt AC 7 ms 768 KB
011.txt AC 7 ms 768 KB
012.txt AC 7 ms 768 KB
013.txt AC 7 ms 768 KB
014.txt AC 7 ms 768 KB
015.txt AC 7 ms 768 KB
016.txt AC 7 ms 768 KB
017.txt AC 7 ms 768 KB
018.txt AC 7 ms 768 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB
example2.txt AC 1 ms 256 KB