Submission #1385937


Source Code Expand

/*
ID: 5ak0
PROG:
LANG: C++11
*/

#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mpr make_pair

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;
const int INF = 1e9 + 7, MAXN = 1e5 + 10;

int n, a[MAXN], b[MAXN], p[MAXN];

int main(){
    #ifndef SAKO
    //freopen(".in", "r", stdin);
    //freopen(".out", "w", stdout);
    #endif // SAKO
    ios_base::sync_with_stdio(0);

    cin >> n;
    for (int i = 1; i <= n; ++i)
        cin >> p[i];
    for (int i = 1; i <= n; ++i)
        a[i] = 1ll * i * 20003, b[i] = 1ll * (n - i + 1) * 20003;
	for (int i = 1; i <= n; ++i)
        a[p[i]] += i, b[p[i]] += i;
    for (int i = 1; i <= n; ++i)
        cout << a[i] << " ";
    cout << "\n";
    for  (int i = 1; i <= n; ++i)
        cout << b[i] << " ";
    return 0;
}

Submission Info

Submission Time
Task B - Construct Sequences
User Sakzhan
Language C++14 (GCC 5.4.1)
Score 400
Code Size 874 Byte
Status AC
Exec Time 6 ms
Memory 896 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 384 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 6 ms 896 KB
006.txt AC 2 ms 384 KB
007.txt AC 6 ms 768 KB
008.txt AC 4 ms 640 KB
009.txt AC 6 ms 896 KB
010.txt AC 6 ms 896 KB
011.txt AC 6 ms 896 KB
012.txt AC 6 ms 896 KB
013.txt AC 6 ms 896 KB
014.txt AC 6 ms 896 KB
015.txt AC 6 ms 896 KB
016.txt AC 6 ms 896 KB
017.txt AC 6 ms 896 KB
018.txt AC 6 ms 896 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB
example2.txt AC 1 ms 256 KB