제출 #47975

#제출 시각아이디문제언어결과실행 시간메모리
47975ExtazyCalvinball championship (CEOI15_teams)C++17
100 / 100
137 ms1096 KiB
#include <bits/stdc++.h>
#define endl '\n'

using namespace std;

const int N = 10007;
const int MOD = (1e6) + 7;

int n,a[N],pos,cnt;
int dp[2][N];
int state_cnt[N],state_coef[N];
long long ans;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int i;

  scanf("%d", &n);
  for(i=1;i<=n;i++) {
    scanf("%d", &a[i]);
  }

  ans=1;

  cnt=1;
  for(pos=2;pos<=n;pos++) {
    if(a[pos]>cnt) {
      state_cnt[pos]=cnt;
      state_coef[pos]=cnt;
      
      ++cnt;
    }
    else {
      state_cnt[pos]=cnt;
      state_coef[pos]=a[pos]-1;
    }
  }

  for(cnt=0;cnt<=n;cnt++) {
    dp[(n+1)&1][cnt]=1;
  }
  for(pos=n;pos>=2;pos--) {
    ans+=dp[(pos+1)&1][state_cnt[pos]]*1ll*state_coef[pos]%MOD;
    for(cnt=1;cnt<pos;cnt++) {
      dp[pos&1][cnt]=(dp[(pos+1)&1][cnt+1]+dp[(pos+1)&1][cnt]*1ll*cnt)%MOD;
    }
  }
  
  ans%=MOD;
  printf("%lld\n", ans);

  return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

teams.cpp: In function 'int main()':
teams.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &n);
   ~~~~~^~~~~~~~~~
teams.cpp:21:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &a[i]);
     ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...