QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#285080#7940. Impossible Numbersucup-team1134#WA 5ms4196kbC++232.4kb2023-12-16 16:28:262023-12-16 16:28:27

Judging History

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

  • [2023-12-17 13:41:15]
  • hack成功,自动添加数据
  • (/hack/501)
  • [2023-12-16 16:28:27]
  • 评测
  • 测评结果:WA
  • 用时:5ms
  • 内存:4196kb
  • [2023-12-16 16:28:26]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005;
const ll INF=1LL<<60;

string S;
vector<string> use;

void DFS(int u,int rem,int mask,int need){
    if(rem<need) return;
    if(u==10) return;
    if((1<<u)>mask&&need) return;
    if(rem<0) return;
    if(u==0&&rem==0) return;
    if(rem==0){
        //cout<<mask<<" "<<S<<endl;
        use.push_back(S);
        return;
    }
    
    //cout<<u<<" "<<rem<<" "<<mask<< ""<<need<<endl;
    
    DFS(u+1,rem,mask,need);
    
    S+=char('0'+u);
    DFS(u,rem-1,mask,need-((mask&(1<<u))>0));
    S.pop_back();
}

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N,K;cin>>N>>K;
    vector<int> SS(N);
    for(int i=0;i<N;i++){
        for(int j=0;j<6;j++){
            int x;cin>>x;
            SS[i]|=(1<<x);
        }
    }
    
    vector<int> lim(1<<10);
    for(int bit=2;bit<(1<<10);bit++){
        for(int i=0;i<N;i++){
            bool f=false;
            for(int j=0;j<10;j++){
                if((bit&(1<<j))&&(SS[i]&(1<<j))) f=true;
            }
            if(f) lim[bit]++;
        }
    }
    
    for(int n=1;;n++){
        use.clear();
        for(int bit=2;bit<(1<<10);bit++){
            if(n>lim[bit]){
                DFS(0,n,bit,lim[bit]+1);
            }
        }
        sort(all(use));
        use.erase(unique(all(use)),use.end());
        
        priority_queue<string,vector<string>,greater<string>> PQ;
        for(string X:use){
            string S=X;
            auto it=lower_bound(all(S),'1');
            swap(S[0],S[it-S.begin()]);
            PQ.push(S);
            //cout<<X<<" "<<S<<endl;
        }
        
        while(!PQ.empty()){
            auto X=PQ.top();PQ.pop();
            cout<<X<<" ";K--;
            if(K==0){
                cout<<endl;
                return 0;
            }
            if(next_permutation(all(X))){
                PQ.push(X);
            }
        }
    }
}


詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3524kb

input:

2 3
1 8 7 0 6 2
1 2 5 4 9 3

output:

33 34 35 

result:

ok single line: '33 34 35 '

Test #2:

score: 0
Accepted
time: 3ms
memory: 4196kb

input:

1 10
1 5 2 2 6 4

output:

3 7 8 9 10 11 12 13 14 15 

result:

ok single line: '3 7 8 9 10 11 12 13 14 15 '

Test #3:

score: 0
Accepted
time: 0ms
memory: 3512kb

input:

4 10
1 5 7 1 2 4
0 1 5 8 9 4
3 5 2 2 7 8
6 1 7 0 2 2

output:

33 66 99 133 166 199 233 266 299 303 

result:

ok single line: '33 66 99 133 166 199 233 266 299 303 '

Test #4:

score: 0
Accepted
time: 1ms
memory: 3464kb

input:

5 10
5 9 4 8 3 3
1 1 9 2 8 9
6 3 3 0 2 1
2 6 0 3 6 4
3 6 4 2 9 4

output:

7 17 27 37 47 55 57 67 70 71 

result:

ok single line: '7 17 27 37 47 55 57 67 70 71 '

Test #5:

score: 0
Accepted
time: 1ms
memory: 3588kb

input:

5 10
8 7 1 4 8 9
2 5 0 1 0 1
9 5 5 3 9 7
6 0 0 2 3 1
1 0 0 4 9 3

output:

66 88 166 188 222 226 262 266 288 366 

result:

ok single line: '66 88 166 188 222 226 262 266 288 366 '

Test #6:

score: 0
Accepted
time: 0ms
memory: 3456kb

input:

5 10
6 8 7 7 0 0
0 5 1 9 4 1
5 9 6 9 5 4
0 4 6 9 1 6
2 8 7 4 4 0

output:

3 13 22 23 30 31 32 33 34 35 

result:

ok single line: '3 13 22 23 30 31 32 33 34 35 '

Test #7:

score: 0
Accepted
time: 2ms
memory: 3640kb

input:

5 1000
0 4 1 3 9 6
9 6 2 1 8 6
5 3 0 7 7 3
0 2 8 0 8 4
2 4 1 2 9 7

output:

55 155 255 333 335 353 355 455 505 515 525 533 535 545 550 551 552 553 554 555 556 557 558 559 565 575 577 585 595 655 666 755 757 775 777 855 888 955 1055 1111 1116 1119 1155 1161 1166 1169 1191 1196 1199 1255 1333 1335 1353 1355 1455 1505 1515 1525 1533 1535 1545 1550 1551 1552 1553 1554 1555 1556...

result:

ok single line: '55 155 255 333 335 353 355 455... 10053 10055 10111 10116 10119 '

Test #8:

score: 0
Accepted
time: 5ms
memory: 3896kb

input:

5 10000
1 4 7 5 6 0
2 3 8 4 9 0
1 2 8 8 3 0
7 9 9 7 2 9
4 7 1 9 3 6

output:

55 155 255 355 455 505 515 525 535 545 550 551 552 553 554 555 556 557 558 559 565 566 575 585 595 655 656 665 666 755 855 888 955 1055 1111 1115 1116 1151 1155 1156 1161 1165 1166 1255 1355 1455 1505 1511 1515 1516 1525 1535 1545 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1561 1565 1566 1575...

result:

ok single line: '55 155 255 355 455 505 515 525... 45507 45508 45509 45510 45511 '

Test #9:

score: -100
Wrong Answer
time: 3ms
memory: 3656kb

input:

6 10000
0 1 3 2 4 7
7 6 4 8 7 9
5 5 7 2 3 9
8 4 6 1 6 4
2 4 9 9 0 7
1 2 3 3 2 0

output:

55 155 255 355 455 505 515 525 535 545 550 551 552 553 554 555 556 557 558 559 565 575 585 595 655 666 668 686 688 755 855 866 868 886 888 955 1055 1111 1155 1255 1355 1455 1505 1515 1525 1535 1545 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1565 1575 1585 1595 1655 1666 1668 1686 1688 1755 18...

result:

wrong answer 1st lines differ - expected: '55 155 255 355 455 505 515 525...6 66847 66848 66849 66850 66851', found: '55 155 255 355 455 505 515 525... 66959 66960 66961 66962 66963 '