QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#657952 | #5140. Frozen Scoreboard | SouthernB# | WA | 10ms | 3784kb | C++14 | 1.8kb | 2024-10-19 15:51:03 | 2024-10-19 15:51:08 |
Judging History
answer
#include <iostream>
#include <cctype>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
template<typename T> void cmax(T &a,const T &b){if(a<b)a=b;}
template<typename T> void cmin(T &a,const T &b){if(b<a)a=b;}
const int N=1005;
int n,m,a,b;
char op[N];
int x[N],y[N];
int gb(int x,int i){return (x>>i)&1;}
void fmain(){
cin>>n>>m;
while(n--){
cin>>a>>b;
for(int i=0;i<m;++i){
cin>>op[i];
if(op[i]!='.'){
cin>>x[i];
if(op[i]!='-'){
cin.get();
cin>>y[i];
}
}
}
bool f=false;
for(int S=0;S<(1<<m);++S){
if(__builtin_popcount(S)!=a)
continue;
bool flg=false;
for(int i=0;i<m;++i)
if((gb(S,i) && (op[i]=='-' || op[i]=='.')) || (!gb(S,i) && op[i]=='+')){
flg=true;
break;
}
if(flg)
continue;
int mn=0,mx=0;
for(int i=0;i<m;++i){
if(!gb(S,i))
continue;
if(op[i]=='+'){
mn+=(x[i]-1)*20+y[i];
mx+=(x[i]-1)*20+y[i];
}else{ // ?
mn+=(y[i]-x[i])*20+240;
mx+=(y[i]-1)*20+299;
}
}
if(!(mn<=b && b<=mx))
continue;
int p=b-mn;
cout<<"Yes\n";
for(int i=0;i<m;++i){
if(op[i]=='.'){
cout<<".\n";
}else if(op[i]=='-'){
cout<<"- "<<x[i]<<'\n';
}else if(op[i]=='+'){
cout<<"+ "<<x[i]<<'/'<<y[i]<<'\n';
}else if(gb(S,i)){
if((x[i]-1)*20+59<=p){
cout<<"+ "<<y[i]<<"/299\n";
p-=(x[i]-1)*20+59;
}else{
int o=y[i]-x[i];
while(p>=20 && o<=y[i]-1){
++o;
p-=20;
}
cout<<"+ "<<(o+1)<<'/'<<(240+p)<<'\n';
}
}else{
cout<<"- "<<y[i]<<'\n';
}
}
f=true;
break;
}
if(!f)
cout<<"No\n";
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr),cout.tie(nullptr);
fmain();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3700kb
input:
1 13 7 951 + 1/6 ? 3 4 + 4/183 - 2 + 3/217 . . . + 2/29 + 1/91 . + 1/22 .
output:
Yes + 1/6 + 3/243 + 4/183 - 2 + 3/217 . . . + 2/29 + 1/91 . + 1/22 .
result:
ok ok (1 test case)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
6 2 1 100 . ? 3 4 2 100 + 1/1 + 1/2 0 0 - 5 - 6 2 480 ? 100 100 ? 100 100 2 480 ? 99 100 ? 100 100 1 2000 ? 100 100 ? 100 100
output:
No No Yes - 5 - 6 Yes + 1/240 + 1/240 No Yes + 89/240 - 100
result:
ok ok (6 test cases)
Test #3:
score: -100
Wrong Answer
time: 10ms
memory: 3784kb
input:
1000 13 6 1519 + 3/183 - 1 + 9/133 ? 2 3 - 5 ? 1 3 - 5 ? 1 1 ? 1 3 - 5 + 1/165 - 6 ? 2 5 2 570 - 2 - 9 . - 1 - 7 - 6 + 4/179 - 2 ? 2 5 . - 2 ? 1 3 . 1 140 . - 2 . - 2 - 1 - 2 - 2 . . . . + 3/100 . 1 195 + 1/195 . . . . . . . . ? 1 1 . . . 0 0 . . . . . . . . . . . . . 3 776 ? 8 22 ? 1 8 - 6 + 1/173 ...
output:
Yes + 3/183 - 1 + 9/133 + 4/258 - 5 + 3/258 - 5 + 1/258 - 3 - 5 + 1/165 - 6 - 5 Yes - 2 - 9 . - 1 - 7 - 6 + 4/179 - 2 + 5/251 . - 2 - 3 . Yes . - 2 . - 2 - 1 - 2 - 2 . . . . + 3/100 . Yes + 1/195 . . . . . . . . - 1 . . . Yes . . . . . . . . . . . . . Yes - 22 - 8 - 6 + 1/173 - 11 - 9 - 3 - 6 + 6/25...
result:
wrong answer 4-th number of submission should be in [2, 3] (test case 1)