답안 #576075

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
576075 2022-06-12T09:07:56 Z hoainiem Skyscraper (JOI16_skyscraper) C++14
15 / 100
80 ms 184324 KB
#include <bits/stdc++.h>
//#pragma GCC target("popcnt")
#define fi first
#define se second
#define lc id<<1
#define rc id<<1^1
#define val f[i][j][s][cl][cr]
const int mod = 1e9 + 7;
double begintime, endtime;
 
using namespace std;
inline void CALC_TIME()
{
    endtime = clock();
    cout << "\nexecution time : " << (endtime - begintime + 1) / 1000 << " s";
}
void add(int &x, int y)
{
    x += y;
    if (x >= mod)
        x -= mod;
}
int mul(int x, int y)
{
    return 1LL * x * y % mod;
}
typedef pair<int, int> pii;
int n, k, a[108], f[108][108][1008][2][2];
int dq(int i, int j, int s, int cl, int cr)
{
    if (s > k || (!j && i))
        return 0;
    if (val != -1)
        return val;
    if (i >= n)
        return val = (j == 1 && cl && cr);
    int res = 0;
    add(res, mul(j + 1 - cl - cr, dq(i + 1, j + 1, s + (j * 2 + 2 - cl - cr) * a[i + 1], cl, cr)));
    if (!cl)
        add(res, dq(i + 1, j + 1, s + (j * 2 + 1 - cr) * a[i + 1], 1, cr));
    if (!cr)
        add(res, dq(i + 1, j + 1, s + (j * 2 + 1 - cl) * a[i + 1], cl, 1));
    if (j > 0)
        add(res, mul(j * 2 - cl - cr, dq(i + 1, j, s + (j * 2 - cl - cr) * a[i + 1], cl, cr)));
    if (!cl)
        add(res, dq(i + 1, j, s + (j * 2 - 1 - cr) * a[i + 1], 1, cr));
    if (!cr)
        add(res, dq(i + 1, j, s + (j * 2 - 1 - cl) * a[i + 1], cl, 1));
    if (j > 1)
        add(res, mul(j - 1, dq(i + 1, j - 1, s + (j * 2 - 2 - cl - cr) * a[i + 1], cl, cr)));
    return val = res;
}   
int main()
{
    begintime = clock();
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    memset(f, -1, sizeof(f));
    cin >> n >> k;
    for (int i = 0; i < n; i++)
        cin >> a[i];
  	if (n == 1)
    {
      cout << 0;
      return 0;
    }
    sort(a, a + n);
    a[n] = 0;
    for (int i = n - 1; i > 0; i--)
        a[i] -= a[i - 1];
    a[0] = 0;
    cout << dq(0, 0, 0, 0, 0);
    return 0;
}

Compilation message

skyscraper.cpp: In function 'int main()':
skyscraper.cpp:61:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   61 |     for (int i = 0; i < n; i++)
      |     ^~~
skyscraper.cpp:63:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   63 |    if (n == 1)
      |    ^~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 71 ms 184260 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 69 ms 184260 KB Output is correct
2 Correct 67 ms 184312 KB Output is correct
3 Correct 77 ms 184276 KB Output is correct
4 Correct 71 ms 184268 KB Output is correct
5 Correct 71 ms 184324 KB Output is correct
6 Correct 72 ms 184320 KB Output is correct
7 Correct 80 ms 184268 KB Output is correct
8 Correct 71 ms 184280 KB Output is correct
9 Correct 78 ms 184264 KB Output is correct
10 Correct 70 ms 184276 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 71 ms 184260 KB Output isn't correct
2 Halted 0 ms 0 KB -