QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#348981 | #6568. Space Alignment | janY# | WA | 0ms | 3768kb | C++17 | 1.8kb | 2024-03-09 22:46:59 | 2024-03-09 22:47:00 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
void solve(){
long long d, n;
cin >> n;
vector<string> c(n);
for (int i = 0; i < n; i++) {
cin >> c[i];
}
vector<int> dep(n);
int run = -1;
for (int i = 0; i < n; i++){
if (c[i].back() == '{'){
if (i == 0) run++;
else {
if (c[i-1].back() == '{') run++;
}
} else {
if (c[i-1].back() == '}'){
run--;
}
}
c.pop_back();
dep[i] = run;
//cout << run << " ";
}
vector<int> scnt(n);
vector<int> tcnt(n);
for (int i = 0; i < n; i++){
for (auto &z : c[i]){
if (z == 's') scnt[i]++;
if (z == 't') tcnt[i]++;
}
}
for (int i = 0; i < 20005; i++){
int fmlt = -1;
bool isgood = true;
for (int j = 0; j < n; j++){
int thiz = scnt[j] + tcnt[j]*i;
if (dep[j] == 0){
if (thiz != 0){
isgood = false;
break;
}
} else {
if (fmlt == -1){
if (thiz%dep[j] == 0){
fmlt = thiz/dep[j];
} else {
isgood = false;
break;
}
} else {
if (fmlt*dep[j] != thiz){
isgood = false;
break;
}
}
}
}
if (isgood){
cout << i;
return;
}
}
cout << -1;
}
int main(){
int t = 1;
//cin >> t;
for (int i = 0; i < t; i++) solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3560kb
input:
10 { ss{ sts{ tt} t} t{ ss} } { }
output:
2
result:
ok single line: '2'
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3768kb
input:
2 { }
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'