# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
238759 | 2020-06-12T17:01:34 Z | Dynamic_Cast | Lasers (NOI19_lasers) | C++14 | 1000 ms | 2912 KB |
//#include <bits/stdc++.h> C++11 #include <iostream> #include <vector> #include <string> #include <algorithm> #include <cmath> #include <stdio.h> #include <time.h> #include <iomanip> #include <stdlib.h> #include <list> #include <stack> #include <queue> #include <climits> #include <map> #include <set> #include <sstream> using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef vector<int> vi; #define PB push_back #define MP make_pair int main() { ios::sync_with_stdio(0); cin.tie(0); int L,R,X,temp; cin>>L>>R; vi append; vector<vi> wall; int f,maxx; for(int i=0;i<R;i++){ cin>>X; for(int j=0;j<X;j++){ cin>>temp; append.PB(temp); } wall.PB(append); if(X>0){ append.clear(); } } int count=0; for (int i = 0; i < R; i++) { for (int j = 1; j < int(wall[i].size()); j++) { wall[i][j]+=wall[i][j-1]; //cout<<wall[i][j]<<"\n"; } } int f2=0; for(int i=0;i<L;i++){ f = 0; for (int j = 0; j < R; j++) { f2=0; if ((wall[j][int(wall[j].size()) - 1]) < L - i) { f2 = 1; continue; } for (int k = 0; k < int(wall[j].size()); k++) { if (wall[j][k] <= i && (wall[j][int(wall[j].size()) - 1] - wall[j][k]) < L-i) { f2=1; break; } } if (f2 == 0) { f = 1; count++; //cout<<"laser "<<i<<" cant pass through row "<<j<<"\n"; break; } } } cout<<count<<"\n"; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1092 ms | 384 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1092 ms | 384 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1089 ms | 2912 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Output is correct |
2 | Correct | 4 ms | 384 KB | Output is correct |
3 | Correct | 5 ms | 384 KB | Output is correct |
4 | Correct | 5 ms | 384 KB | Output is correct |
5 | Correct | 5 ms | 384 KB | Output is correct |
6 | Correct | 5 ms | 384 KB | Output is correct |
7 | Correct | 5 ms | 384 KB | Output is correct |
8 | Correct | 5 ms | 384 KB | Output is correct |
9 | Correct | 5 ms | 384 KB | Output is correct |
10 | Correct | 5 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1089 ms | 2912 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1092 ms | 384 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |