# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
92546 |
2019-01-03T11:33:34 Z |
Shtef |
NLO (COCI18_nlo) |
C++14 |
|
342 ms |
66560 KB |
#include <iostream>
#include <map>
#include <vector>
#include <cmath>
#include <set>
#include <utility>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair <int, int> pii;
#define x first
#define y second
#define mp make_pair
int n, m, k;
vector <pii> c[100001];
void processcircle(int x, int y, int r, int val){
for(int i = max(1, y - r) ; i <= min(m, y + r) ; ++i){
int koef = sqrt((ll)(r - i + y) * (r + i - y));
c[i].push_back(mp(max(1, x - koef), val));
c[i].push_back(mp(min(n + 1, x + koef + 1), -val));
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
cin >> k;
for(int i = 0 ; i < k ; ++i){
int x, y, r;
cin >> x >> y >> r;
processcircle(x, y, r, i + 1);
}
ll sol = 0;
for(int i = 1 ; i <= m ; ++i){
int last = 1;
set <int, greater <int> > s;
sort(c[i].begin(), c[i].end());
for(int j = 0 ; j < c[i].size() ; ){
int t = c[i][j].x;
sol += (ll)(t - last) * (k - (!s.empty() ? *s.begin() : 0LL));
while(j < c[i].size() && c[i][j].x == t){
int o = c[i][j].y;
if(o < 0){
s.erase(s.find(-o));
}
else{
s.insert(o);
}
j++;
}
last = t;
}
sol += (n + 1 - last) * k;
}
cout << sol << endl;
return 0;
}
Compilation message
nlo.cpp: In function 'int main()':
nlo.cpp:45:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0 ; j < c[i].size() ; ){
~~^~~~~~~~~~~~~
nlo.cpp:48:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(j < c[i].size() && c[i][j].x == t){
~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
3064 KB |
Output is correct |
2 |
Correct |
15 ms |
3960 KB |
Output is correct |
3 |
Correct |
10 ms |
3576 KB |
Output is correct |
4 |
Correct |
52 ms |
8964 KB |
Output is correct |
5 |
Correct |
40 ms |
8900 KB |
Output is correct |
6 |
Correct |
342 ms |
47680 KB |
Output is correct |
7 |
Correct |
120 ms |
20236 KB |
Output is correct |
8 |
Runtime error |
238 ms |
66560 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
9 |
Correct |
226 ms |
34832 KB |
Output is correct |
10 |
Runtime error |
315 ms |
66560 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |