Submission #200420

#TimeUsernameProblemLanguageResultExecution timeMemory
200420wilwxkJourney (NOI18_journey)C++14
20 / 100
5 ms632 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int MAXN = 1e4+5; const int MAXM = 405; ll dp[MAXN][MAXM]; vector<pair<int, int> > g[MAXN]; int n, m, x; int main() { scanf("%d %d %d", &n, &m, &x); for(int i = 0; i < n-1; i ++) { for(int j = 0; j < x; j++) { int a, b; scanf("%d %d", &a, &b); g[a].push_back({i, b}); } } dp[0][0] = 1; for(int i = 1; i < n; i++) { for(int j = 0; j < m; j++) { for(auto edge : g[i]) { int k = j-edge.second; if(k < 0) continue; dp[i][j] += dp[edge.first][k]; } // printf("%d %d >> %lld\n", i, j, dp[i][j]); } for(int j = 1; j < m; j++) dp[i][j] += dp[i][j-1]; } for(int i = 0; i < m; i++) printf("%lld ", min(dp[n-1][i], 500000001LL)); }

Compilation message (stderr)

journey.cpp: In function 'int main()':
journey.cpp:12:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d %d", &n, &m, &x);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
journey.cpp:15:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    int a, b; scanf("%d %d", &a, &b);
              ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...