이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl "\n"
using namespace std ;
typedef long long ll;
typedef long double ld ;
const int N=2e7;
const ll inf=1e18 ;
const ll mod = 1e9 + 7 ;
ll mypower(ll x, ll y){
if(y == 0) return 1 ;
if(y == 1) return x ;
ll ret = mypower(x , y / 2);
ret = (ret * ret) % mod;
if(y % 2) ret = ( ret * x ) % mod ;
return ret ;
}
ll n , k , c ;
ll a[509][509] ;
set < pair < ll , vector < ll > > > ss;
bool can(ll ind , vector < ll > x){
for(auto p : x){
if (p == ind)
return 0 ;
}
return 1 ;
}
vector < ll > ans ;
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> k >> c ;
for(int i = 1 ; i <= n ; i++){
for(int j = 1 ; j <= k ; j++){
cin >> a[i][j] ;
}
}
ss.insert({0 , {}}) ;
for(int i = 1 ; i <= k ; i++){
set < pair < ll , vector < ll > > > ss2 ;
for(auto p : ss){
for(int j = 1 ; j <= n ; j++){
if(can(j , p.second)){
vector < ll > nv = p.second ;
nv.push_back(j) ;
sort(nv.begin() , nv.end()) ;
ll nco = 0 ;
for(int l = 1 ; l <= i ; l++){
ll mx = 0 ;
for(auto q : nv){
mx = max(mx , a[q][l]) ;
}
nco += mx ;
}
ss2.insert({nco , nv}) ;
}
}
while(ss2.size() > c + 200){
ss2.erase(ss.begin()) ;
}
}
ss = ss2 ;
}
for(auto p : ss)
ans.push_back(p.first);
cout << ans[ans.size() - c] << endl ;
return 0 ;
}
컴파일 시 표준 에러 (stderr) 메시지
olympiads.cpp: In function 'int main()':
olympiads.cpp:56:30: warning: comparison of integer expressions of different signedness: 'std::set<std::pair<long long int, std::vector<long long int> > >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
56 | while(ss2.size() > c + 200){
| ~~~~~~~~~~~^~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |