답안 #496285

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
496285 2021-12-21T04:54:48 Z Ziel Meteors (POI11_met) C++17
0 / 100
6000 ms 65540 KB
/**
 * LES GREATEABLES BRO TEAM
**/

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
#define sz(x) (int)x.size()
const bool FLAG = false;
void setIO(const string &f = "");

#define int ll

void solve() {
    int n, m;
    cin >> n >> m;
    vector<int> o(m + 1);
    for (int i = 1; i <= m; i++)
    	cin >> o[i];
    vector<int> p(n + 1);
    for (int i = 1; i <= n; i++)
    	cin >> p[i];
    int q;
    cin >> q;
    vector<int> ans(n + 1, 1000000000);
    set<int> s[n + 1];
    for (int rep = 1; rep <= q; rep++) {
    	int l, r, x;
    	cin >> l >> r >> x;
    	if (l > r) {
    		for (int i = l; i <= m; i++) {
    			p[o[i]] -= x;
    			s[o[i]].insert(rep);
    		}
    		for (int i = 1; i <= r; i++) {
    			p[o[i]] -= x;
    			s[o[i]].insert(rep);
    		}
    	} else {
    		for (int i = l; i <= r; i++) {
    			p[o[i]] -= x;
	    		s[o[i]].insert(rep);
    		}
    	}
    	for (int i = 1; i <= n; i++) {
    		if (p[i] <= 0)
    			ans[i] = min(ans[i], sz(s[i]));
    	}
    }
    for (int i = 1; i <= n; i++) {
    	if (ans[i] == 1000000000)
    		cout << "NIE\n";
    	else
    		cout << ans[i] << '\n';
    }
}

signed main() {
    setIO();
    
    int tt = 1;
    if (FLAG) {
    	cin >> tt;
    }
    while (tt--) {
    	solve();
    }
    
    return 0;
}

void setIO(const string &f) {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    if (sz(f) && fopen((f + ".in").c_str(), "r")) {
        freopen((f + ".in").c_str(), "r", stdin);
        freopen((f + ".out").c_str(), "w", stdout);
    }
}

Compilation message

met.cpp: In function 'void setIO(const string&)':
met.cpp:78:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   78 |         freopen((f + ".in").c_str(), "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
met.cpp:79:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   79 |         freopen((f + ".out").c_str(), "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 2252 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 44 ms 6544 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 6098 ms 18008 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 315 ms 65540 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1078 ms 65540 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 6060 ms 52008 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 644 ms 65540 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 720 ms 65540 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -