QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#446652#6389. Topicalsnd0 2ms5344kbC++141.6kb2024-06-17 14:47:252024-06-17 14:47:26

Judging History

你现在查看的是最新测评结果

  • [2024-06-17 14:47:26]
  • 评测
  • 测评结果:0
  • 用时:2ms
  • 内存:5344kb
  • [2024-06-17 14:47:25]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
#define pp pop_back
#define pb push_back
#define eb emplace_back
#define nl cout "\n"
#define sp <<" "
#define spc <<" "<<
#define ff first
#define ss second
#define r0 return 0
#define INF INT_MAX
#define mod 998244353
#define MOD 1000000007
#define Yes cout << "YES" << endl
#define No cout << "NO" << endl
#define vi vector<int>
#define vll vector<ll>
#define vb vector<bool>
#define vd vector<double>
#define vs vector<string>
#define pii pair <int,int>
#define pll pair<ll,ll>
#define pls pair<ll,string>
#define psl pair<string,ll>
#define plc pair<ll,char>
#define pcl pair<char,ll>
#define pss pair<string,string>
#define pis pair<int,string>
#define sz size()
#define pause system("pause")
#define min3(a,b,c) min(a,min(b,c))
#define all(x) (x).begin(),(x).end()
#define deb(x) cout << #x << " - " << x << endl
using namespace std;

vector <int> v;
inline void test_case(){
	int n, k;
	cin >> n >> k;
	int ans=0;
	int a[n+10][k+10], b[n+10][k+10], sc[k+10];
	for(int j=0; j<n; j++){
		for(int i=0; i<k; i++){
			sc[i]=0;
			cin >> a[j][i];
		}
	}
	for(int j=0; j<n; j++){
		for(int i=0; i<k; i++){
			cin >> b[j][i];
		}
	}
	for(int w=0; w<n; w++){
	
	for(int j=0; j<n; j++){
		int check=0;
		for(int i=0; i<k; i++){
			if(sc[i]<a[j][i]){
				check=1;
				break;
			}
		}
		if(check==0){
			ans++;
			for(int q=0; q<k; q++){
				sc[q]+=b[j][q];
			}
		}
	}
	}
}
signed main () {
    ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    int T = 1;
    // cin >> T;
    while(T--) {
        test_case();
    }
    
    return 0;
}






Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3580kb

input:

1 1
693647287
340782526

output:


result:

wrong answer Answer contains longer sequence [length = 1], but output contains 0 elements

Subtask #2:

score: 0
Wrong Answer

Test #8:

score: 0
Wrong Answer
time: 0ms
memory: 3604kb

input:

100 1
893339036
896783899
690308537
201770764
262364362
105000893
770698921
744238454
470980016
935046317
642998516
100481910
392307650
116783134
196939768
372329082
346372520
43063564
245523488
389084350
130314590
412588681
987795927
681635353
304582580
472268968
700147283
743357606
792644412
99955...

output:


result:

wrong answer Answer contains longer sequence [length = 1], but output contains 0 elements

Subtask #3:

score: 0
Wrong Answer

Test #15:

score: 0
Wrong Answer
time: 2ms
memory: 5344kb

input:

10000 1
568857328
651788426
751475430
102940442
763289419
468657944
770847628
780257867
16919385
575963868
281824241
291248174
140016533
313529232
302186452
32709864
787073783
1926820
239509174
220454071
34252400
390385721
675239026
245106357
489697460
28435096
825528061
159083009
16370561
223299279...

output:


result:

wrong answer Answer contains longer sequence [length = 1], but output contains 0 elements

Subtask #4:

score: 0
Skipped

Dependency #1:

0%