Submission #2404528


Source Code Expand

#include <bits/stdc++.h>

using namespace std;
using LL = long long;
using P = pair<int, int>;
using Tapris = tuple<int, int, int>;

#define REP(i, n) for(LL i = 0; i < n; ++i)
#define FOR(i, a, n) for(LL i = a; i < n; ++i)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()

const int INF = (int)1e9;
const LL INFL = (LL)1e15;
const int MOD = 1e9 + 7;

int dy[]={0, 0, 1, -1, 0};
int dx[]={1, -1, 0, 0, 0};

//#define int long long

/*************** using variables ***************/
int n;
vector<int> p, a, b, r;
/**********************************************/

signed main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    cin >> n;
    p.resize(n);
    a.resize(n);
    b.resize(n);
    r.resize(n+1);
    REP(i, n) {cin >> p[i]; p[i]--; r[p[i]] = i+1; }

    REP(i, n){
        cout << 30000 * (i+1);
        if(i != n-1) cout << " ";
    }
    cout << endl;
    REP(i, n){
        cout << 30000 * (n - i) + r[i];
        if(i != n-1) cout << " ";
    }
    cout << endl;

}

Submission Info

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