# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1102735 |
2024-10-18T18:33:47 Z |
ttamx |
Topical (NOI23_topical) |
C++17 |
|
513 ms |
132168 KB |
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
cin.tie(nullptr)->sync_with_stdio(false);
int n,m;
cin >> n >> m;
vector<vector<int>> a(n,vector<int>(m)),b(n,vector<int>(m));
for(auto &v:a)for(auto &x:v)cin >> x;
for(auto &v:b)for(auto &x:v)cin >> x;
queue<int> q;
vector<int> cnt(n);
vector<ll> val(n);
vector<priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>> pq(m);
for(int i=0;i<n;i++)for(int j=0;j<m;j++){
if(a[i][j])pq[j].emplace(a[i][j],i);
else cnt[i]++;
if(cnt[i]==m)q.emplace(i);
}
int ans=0;
while(!q.empty()){
int u=q.front();
q.pop();
ans++;
for(int i=0;i<m;i++){
val[i]+=b[u][i];
while(!pq[i].empty()&&pq[i].top().first<=val[i]){
int v=pq[i].top().second;
pq[i].pop();
cnt[v]++;
if(cnt[v]==m)q.emplace(v);
}
}
}
cout << ans << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Runtime error |
2 ms |
592 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
504 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
336 KB |
Output is correct |
4 |
Correct |
1 ms |
504 KB |
Output is correct |
5 |
Runtime error |
1 ms |
592 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
5 ms |
1872 KB |
Output is correct |
4 |
Correct |
34 ms |
13588 KB |
Output is correct |
5 |
Correct |
43 ms |
13744 KB |
Output is correct |
6 |
Correct |
500 ms |
132020 KB |
Output is correct |
7 |
Correct |
513 ms |
132020 KB |
Output is correct |
8 |
Correct |
466 ms |
132020 KB |
Output is correct |
9 |
Correct |
477 ms |
132168 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Runtime error |
2 ms |
592 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |