Submission #1225711


Source Code Expand

#include <bits/stdc++.h>

// Shabdan Batyrkulov

using namespace std;

#define MAX 1007
#define pb push_back
#define fr first
#define sc second
#define mk make_pair
#define ll long long
#define ld long double

const long long N = (int)1e5 + 7;
const int INF = (int)1e9 + 7;

int a[N], r[N];

int main () {
        ios::sync_with_stdio(0);
        int n; cin >> n;
        for (int i = 1; i <= n; i++) {
                cin >> a[i];
        }
        for (int i = 1; i <= n; i++) {
                r[a[i]] = i;
        }
        for (int i = 1; i <= n; i++) {
                ll ans = 30000 * i;
                cout << ans;
                if (i == n) continue;
                cout << ' ';
        }
        cout << endl;
        for (int i = 1; i <= n; i++) {
                ll ans = 30000 * (n - i) + r[i];
                cout << ans;
                if (i == n) continue;
                cout << ' ';
        }
        cout << endl;
}

Submission Info

Submission Time
Task B - Construct Sequences
User Shabdan
Language C++14 (GCC 5.4.1)
Score 400
Code Size 984 Byte
Status AC
Exec Time 6 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 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 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 6 ms 768 KB
010.txt AC 6 ms 768 KB
011.txt AC 6 ms 768 KB
012.txt AC 6 ms 768 KB
013.txt AC 6 ms 768 KB
014.txt AC 6 ms 768 KB
015.txt AC 6 ms 768 KB
016.txt AC 6 ms 768 KB
017.txt AC 6 ms 768 KB
018.txt AC 6 ms 768 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB
example2.txt AC 1 ms 256 KB