Submission #919014

#TimeUsernameProblemLanguageResultExecution timeMemory
919014TINBob (COCI14_bob)C++17
72 / 120
1075 ms14008 KiB
#include <bits/stdc++.h> using namespace std; #define FNAME "test" const int N = 1005; #define bs bitset<N> int n,m; int a[N][N]; long long res = 0; void Task() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cout << fixed << setprecision(9); if (fopen(FNAME".inp","r")) { freopen(FNAME".inp","r",stdin); freopen(FNAME".out","w",stdout); } } void Solve() { //Your Code cin >> n >> m; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cin >> a[i][j]; } } for (int L = 1; L <= m; L++) { vector<bool> b(n + 2); for (int i = 1; i <= n; i++) b[i] = true; b[n + 1] = false; for (int R = L; R <= m; R++) { for (int i = 1; i <= n; i++) b[i] = b[i] & (a[i][L] == a[i][R]); // cerr << L << " " << R << " "; // for (int i = 1; i <= n; i++) cerr << b[i]; // cerr << '\n'; int k = 0; for (int i = 1; i <= n + 1; i++) { if (b[i] && (i == 1 || a[i][L] == a[i - 1][L])) k++; else { res += 1LL * k * (k + 1) / 2; k = b[i]; } } } } cout << res << '\n'; } int main() { Task(); Solve(); return 37^37; }

Compilation message (stderr)

bob.cpp: In function 'void Task()':
bob.cpp:20:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   20 |   freopen(FNAME".inp","r",stdin);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
bob.cpp:21:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |   freopen(FNAME".out","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...