# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
314428 | 2020-10-19T20:46:02 Z | urosk | Colouring a rectangle (eJOI19_colouring) | C++14 | 361 ms | 6264 KB |
#include <bits/stdc++.h> #include <chrono> #define ll long long #define ull unsigned long long #define ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); #define inf 1e15 #define pb push_back #define popb pop_back #define fi first #define sc second using namespace std; using namespace std::chrono; /*auto start = high_resolution_clock::now(); auto stop = high_resolution_clock::now(); auto duration = duration_cast<microseconds>(stop - start); cout << "Time taken by function: " << duration.count() << " microseconds" << endl;*/ const int maxn = 2e5+5; int a[maxn]; int b[maxn]; int main(){ int n,m; cin >> n >> m; for(int i = 0;i<n+m-1;i++){ cin >> a[i]; } for(int i = 0;i<n+m-1;i++){ cin >> b[i]; } if(n==m){ ll ans1 = 0; ll ans2 = 0; for(int i = 0;i<n+m-1;i++){ ans1+=a[i]; } for(int i = 0;i<n+m-1;i++){ ans2+=b[i]; } cout<<min(ans1,ans2); }else{ ll ans = 0; for(int i = 0;i<m+n-1;i++){ ans+=min(a[i],b[m+n-i-2]); } cout<<ans; } } /*1 5 3 2 3 5 7 1 3 5 2 4*/
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 333 ms | 1912 KB | Output is correct |
2 | Correct | 331 ms | 5720 KB | Output is correct |
3 | Correct | 332 ms | 5752 KB | Output is correct |
4 | Correct | 349 ms | 6000 KB | Output is correct |
5 | Correct | 361 ms | 6264 KB | Output is correct |
6 | Correct | 291 ms | 5240 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 181 ms | 2168 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |