Submission #464694

#TimeUsernameProblemLanguageResultExecution timeMemory
464694Hamed5001Strah (COCI18_strah)C++14
0 / 110
18 ms32020 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; /* dp[i][j] = potential value in range (i, j) -> (N, M); dp[i][j] = dp[i+1][j] + dp[i][j+1] - dp[i+1][j+1] + (sum()) */ const int mxN = 2e3+10; ll N, M; char land[mxN][mxN]; ll cum[mxN][mxN], nxt[mxN][mxN]; ll calc(int i, int j) { ll ret = 0; if (land[i][j] == '#') return ret; ll pos = M+1; for (ll ii = i; ii <= N && land[ii][j] != '#'; ii++) { pos = min(pos, nxt[ii][j]); ll len = pos - j; ret += (len*(len+1)/2) * (ii-i+1); } return ret; } void solve() { scanf("%lld%lld", &N, &M); for (int i = 1; i <= N; i++) { for (int j = 1; j <= M; j++) { scanf(" %c", &land[i][j]); cum[i][j] = ((land[i][j] == '#') + cum[i-1][j] + cum[i][j-1] - cum[i-1][j-1]); } } for (int i = 1; i <= N; i++) { int lst = M+1; for (int j = M; j; j--) { if (land[i][j] == '#') lst = j; nxt[i][j] = lst; } } vector<vector<ll>> dp(mxN, vector<ll>(mxN, 0)); dp[N][M] = (land[N][M] != '#'); for (int i = N; i; i--) { for (int j = M; j; j--) { dp[i][j] = dp[i+1][j] + dp[i][j+1] - dp[i+1][j+1] + calc(i, j); } } printf("%lld", dp[1][1]); } int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif solve(); }

Compilation message (stderr)

strah.cpp: In function 'void solve()':
strah.cpp:32:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   32 |  scanf("%lld%lld", &N, &M);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~
strah.cpp:35:9: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   35 |    scanf(" %c", &land[i][j]);
      |    ~~~~~^~~~~~~~~~~~~~~~~~~~
strah.cpp: In function 'int main()':
strah.cpp:66:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   66 |  freopen("input.txt", "r", stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
strah.cpp:67:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   67 |  freopen("output.txt", "w", stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...