QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#574380#9308. World CupstarWA 0ms3656kbC++201.2kb2024-09-18 21:51:112024-09-18 21:51:11

Judging History

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

  • [2024-09-18 21:51:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3656kb
  • [2024-09-18 21:51:11]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=100;
int a[N],b[N],c[N];

void slove(){
  for(int i=1;i<=32;i++){
    cin>>a[i];
  }
  int p=a[1];
  int idx=0,tot=0;
  for(int i=1;i<=8;i++){
        int k1=(i-1)*4+1;
        sort(a+k1,a+k1+4,greater<int>());
        b[++tot]=a[k1];
        b[++tot]=a[k1+1];

  }
  //for(int i=1;i<=tot;i++)cout<<b[i]<<'\n';
  if(b[1]!=p&&b[2]!=p){
    cout<<32<<'\n';
    return;
  }
  for(int i=1;i<=4;i++){
    int k=(i-1)*4;
    c[++idx]=max(b[k+1],b[k+4]);
  }
  for(int i=1;i<=4;i++){
    int k=(i-1)*4;
    c[++idx]=max(b[k+2],b[k+3]);
  }
  if(c[1]!=p&&c[5]!=p){
    cout<<16<<'\n';
    return;
  }
  tot=0;
  for(int i=1;i<=4;i++){
    b[++tot]=max(c[i*2-1],c[i*2]);
  }
  if(b[1]!=p&&b[3]!=p){
     cout<<8<<'\n';
    return;
  }
  idx=0;
  for(int i=1;i<=2;i++){
    c[++idx]=max(b[i*2-1],b[i*2]);
  }
   if(c[1]!=p&&c[2]!=p){
     cout<<4<<'\n';
    return;
  }
  int x=max(c[1],c[2]);
  if(x==p){
    cout<<1<<'\n';
  }
  else{
    cout<<2<<'\n';
  }
}

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin>>t;
    while(t--){
        slove();
    }
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3656kb

input:

1
32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1

output:

1

result:

ok 1 number(s): "1"

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3588kb

input:

32
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
2 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
3 1 2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
4 1 2 3 5 6 7 8 9 10 11 12 13 14 15 ...

output:

32
32
16
16
16
16
8
8
8
8
8
8
8
8
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
2
1

result:

wrong answer 14th numbers differ - expected: '4', found: '8'