Submission #1370304


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 = 1e3 + 10;

int n, a[MAXN], b[MAXN], ans[MAXN][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 >> a[i];
        b[i] = a[i];
    }
    sort (b + 1, b + n + 1);
    for (int i = 1; i <= n; ++i)
        for (int j = 1; j <= n; ++j)
            if (a[i] == b[j])
                ans[i][j] = ans[i - 1][j - 1] + 1;
            else
                ans[i][j] = max(ans[i][j - 1], ans[i - 1][j]);
    cout << ans[n][n];
    return 0;
}

Submission Info

Submission Time
Task B - Colorful Creatures
User Sakzhan
Language C++14 (GCC 5.4.1)
Score 0
Code Size 886 Byte
Status RE
Exec Time 101 ms
Memory 4224 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 3
AC × 6
RE × 13
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, in1.txt, in10.txt, in11.txt, in12.txt, in13.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
in1.txt RE 96 ms 256 KB
in10.txt RE 97 ms 256 KB
in11.txt RE 97 ms 256 KB
in12.txt RE 96 ms 256 KB
in13.txt RE 97 ms 256 KB
in2.txt RE 98 ms 256 KB
in3.txt RE 97 ms 256 KB
in4.txt RE 97 ms 256 KB
in5.txt RE 96 ms 256 KB
in6.txt RE 101 ms 4224 KB
in7.txt RE 97 ms 256 KB
in8.txt RE 99 ms 256 KB
in9.txt RE 97 ms 256 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB