# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
496479 | 2021-12-21T10:38:03 Z | AQ0212 | Meteors (POI11_met) | C++17 | 6000 ms | 22764 KB |
#include <iostream> #include <algorithm> #include <cmath> #include <set> #include <map> #include <vector> #include <string> #include <sstream> #include <cstring> #define ll long long int #define pb push_back #define pf push_front #define fi first #define se second #define all(x) x.begin(), x.end() using namespace std; ll l, r, a, p[ 500111 ], o[ 500111 ], cnt[ 500111 ], ans[ 500111 ]; vector < ll > v[ 500111 ]; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); ll n, m, k; cin >> n >> m; for(int i = 1; i <= m; i ++){ cin >> o[ i ]; v[ o[ i ] ].pb(i); } for(int i = 1; i <= n; i ++){ cin >> p[ i ]; } cin >> k; ll t = 1; while(k --){ cin >> l >> r >> a; if(l <= r){ for(int i = 1; i <= m; i ++){ for(int j = 0; j < v[ i ].size(); j ++){ if(l <= v[ i ][ j ] && v[ i ][ j ] <= r) cnt[ i ] += a; } if(cnt[ i ] >= p[ i ] && !ans[ i ]) ans[ i ] = t; } }else{ for(int i = 1; i <= m; i ++){ for(int j = 0; j < v[ i ].size(); j ++){ if(l <= v[ i ][ j ] || v[ i ][ j ] <= r) cnt[ i ] += a; } if(cnt[ i ] >= p[ i ] && !ans[ i ]) ans[ i ] = t; } } t ++; } for(int i = 1; i <= n; i ++){ if(ans[ i ]) cout << ans[ i ] << "\n"; else cout << "NIE\n"; } // for(int i = 1; i <= n; i ++){ // cout << i << ":" << cnt[ i ] << "\n"; // } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 12108 KB | Output is correct |
2 | Correct | 12 ms | 12132 KB | Output is correct |
3 | Correct | 14 ms | 12124 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 12124 KB | Output is correct |
2 | Correct | 13 ms | 12108 KB | Output is correct |
3 | Correct | 12 ms | 12140 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5777 ms | 13444 KB | Output is correct |
2 | Execution timed out | 6019 ms | 14032 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6038 ms | 13764 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5818 ms | 13832 KB | Output is correct |
2 | Execution timed out | 6080 ms | 13972 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6093 ms | 13384 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6083 ms | 22764 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6091 ms | 22536 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |