QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#797448#1211. Card Game Is Great Funmodwwe0 1ms7844kbC++233.1kb2024-12-03 00:30:502024-12-03 00:30:51

Judging History

This is the latest submission verdict.

  • [2024-12-03 00:30:51]
  • Judged
  • Verdict: 0
  • Time: 1ms
  • Memory: 7844kb
  • [2024-12-03 00:30:50]
  • Submitted

answer

#include<bits/stdc++.h>
//#define int  long long
#define ll long long
#define down cout<<'\n';
#define debug cout<<" cucuucucuuu",down
#define NHP     ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
#define modwwe  int t;cin>>t; while(t--)
#define bit(i,j) (i>>j&1)
#define sobit(a) __builtin_popcountll(a)
#define task "test"
#define fin(x) freopen(x".inp","r",stdin)
#define fou(x) freopen(x".ans","w",stdout)
#define pb push_back
#define mask(k) (1<<k)
#define mp make_pair
#define checktime   cerr << (double)clock() / CLOCKS_PER_SEC * 1000  << " ms";
using namespace std;
#define getchar_unlocked getchar

inline int scan()
{
    char c = getchar_unlocked();
    int x = 0;
    while (c < '0' || c > '9')
    {
        c = getchar_unlocked();
    }
    while (c >= '0' && c <= '9')
    {
        x = (x << 1) + (x << 3) + c - '0';
        c = getchar_unlocked();
    }
    return x;
}
void phongbeo();
const int inf = 1e9;
const ll mod2 = 998244353;
const int  mod1 = 998244353;
const ll base=67;
int add(int x,int y)
{
    if(x+y>=mod2) x-=mod2;
    if(x+y<0)x+=mod2;
    return x+y;
}
struct icd
{
    long double a;
    int b;
};
struct ib
{
    int a;
    int b;
};
struct ic
{
    int a, b, c;
};
struct id
{
    int a, b, c, d;
};
struct ie
{
    int a, b, c, d, e;

};
int n, m, s1, s2, s4, s3, sf, k, s5, s6, mx, s7, s8, s9, mx2, res, dem2 = 0, dem = 0, s33, dem3, dem4, mid, l2, r2, center;
int  i, s10, s12,k1,k2,k3,s11,lim,w,l,r ;
int kk;
int el = 19;
main()
{
    if(fopen(task".inp","r"))
    {
        fin(task);
        fou(task);
    }
    NHP
    /// cin>>s1;
    // modwwe
    phongbeo();
    // checktime
}
int c[510];
int a[510];
int b[510];
int dp[505][505][505][2];
int v[505];
bool check(int x,int y)
{
    if(x==0||y==0||x>n||y>n) return 1;
    if(c[x]==c[y]||a[x]==a[y]) return 1;
    return 0;
}
void phongbeo()
{
    cin>>n;
    for(int i=1; i<=n; i++)
        cin>>c[i]>>a[i]>>v[i];
    for(int i=1; i<=n; i++)
        for(int j=i+1; j<=n+1; j++)
            for(int z=i+2; z<=n+2; z++)
                for(int f=0; f<=1; f++)
                    dp[i][j][z][f]=-inf;
    s4=max(v[1],v[3]);
    if(check(1,2))
        dp[2][3][4][1]=v[1];
    if(check(1,4))
        dp[2][3][4][0]=v[1];
    if(check(3,4))
        dp[1][2][4][0]=v[3];
    for(int i=1; i<=n; i++)
    {
        for(int j=i+1; j<=n; j++)
            for(int z=j+1; z<=n+1; z++)
            {
                if(check(z,z+1))
                    dp[i][j][z+1][0]=max(dp[i][j][z+1][0],dp[i][j][z][0]+v[z]);
                if(check(i,z))
                    dp[i][j][z+1][1]=max(dp[i][j][z+1][1],dp[i][j][z][0]+v[z]);


                if(check(i,j))
                    dp[j][z][z+1][1]=max(dp[j][z][z+1][1],dp[i][j][z][1]+v[i]);
                if(check(i,z+1))
                    dp[j][z][z+1][0]=max(dp[j][z][z+1][0],dp[i][j][z][1]+v[i]);
            }
    }
    for(int i=0; i<=n; i++)
        for(int j=i+1; j<=n+1; j++)
            for(int z=j+1; z<=n+2; z++)
                for(int f=0; f<=1; f++)
                    s4=max(s4,dp[i][j][z][f]);
    cout<<s4;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 10
Accepted
time: 1ms
memory: 7724kb

input:

1
100 200 300

output:

300

result:

ok single line: '300'

Test #2:

score: 0
Wrong Answer
time: 0ms
memory: 7708kb

input:

2
10 30 50
20 30 60

output:

50

result:

wrong answer 1st lines differ - expected: '110', found: '50'

Subtask #2:

score: 0
Wrong Answer

Test #21:

score: 15
Accepted
time: 1ms
memory: 7844kb

input:

1
300 200 100

output:

100

result:

ok single line: '100'

Test #22:

score: 0
Wrong Answer
time: 1ms
memory: 7776kb

input:

2
60 40 20
60 30 10

output:

20

result:

wrong answer 1st lines differ - expected: '30', found: '20'

Subtask #3:

score: 0
Wrong Answer

Test #41:

score: 75
Accepted
time: 1ms
memory: 7832kb

input:

1
200 200 200

output:

200

result:

ok single line: '200'

Test #42:

score: 0
Wrong Answer
time: 0ms
memory: 7788kb

input:

2
10 50 30
60 50 40

output:

30

result:

wrong answer 1st lines differ - expected: '70', found: '30'