# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
743219 |
2023-05-17T08:57:01 Z |
vjudge1 |
Lasers (NOI19_lasers) |
C++17 |
|
4 ms |
468 KB |
#include<bits/stdc++.h>
using namespace std;
using ll = long long ;
using pii = pair<ll , ll> ;
using i3 = tuple<ll , ll , ll> ;
const int N = 1e6+5 ;
int n , m , cnt , ans ;
int l , r ;
bitset<N> vis ;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> l >> r ;
for(int i=1;i<=r;i++){
int x , y ; cin >> x >> y ;
int st = l - y + 1 , ed = y ;
for(int j=st;j<=ed;j++) vis[j] = true ;
}
for(int i=1;i<=l;i++){
if(vis[i]) ans++;
}
cout << ans ;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
468 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
468 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
468 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |