QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#249533#5499. AliasesreginoxWA 915ms20044kbC++201.2kb2023-11-12 11:33:042023-11-12 11:33:05

Judging History

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

  • [2023-11-12 11:33:05]
  • 评测
  • 测评结果:WA
  • 用时:915ms
  • 内存:20044kb
  • [2023-11-12 11:33:04]
  • 提交

answer

#include <bits/stdc++.h>
#define ll long long
#define faster ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define sp << " "
#define task ""
using namespace std;
ll t, n, aa=1e9, bb=1e9, cc=1e9, pw[10]={1};
pair<string, string> s[200005];
map<pair<string,string>,ll> mp;

bool check(ll a, ll b, ll c){
	mp.clear();
	for(ll i = 1; i <= n; i++){
		mp[make_pair(s[i].first.substr(0,min(a, (ll)s[i].first.size())),s[i].second.substr(0,min(b, (ll)s[i].second.size())))]++;
	}
	for(auto x:mp){
		if(x.second>pw[c]-1) return false;
	}
	return true;
}

int main(){
	if(fopen(task".inp","r")){
		freopen(task".inp","r",stdin);
		freopen(task".out","w",stdout);
	}
	faster
	for(ll i = 1; i <= 9; i++) pw[i]=pw[i-1]*10;
	cin >> t;
	while(t--){
		aa=1e9, bb=1e9, cc=1e9;
		cin >> n;
		for(ll i = 1; i <= n; i++) cin >> s[i].first >> s[i].second;
		for(ll a = 0; a <= 6; a++){
			for(ll b = 0; b <= 6; b++){
				for(ll c = 0; c <= 6; c++){	
					if(a+b+c<1) continue;
					if(a+b+c>6) continue;
					if(check(a, b, c)){
						if(a+b+c<aa+bb+cc){
							aa=a,bb=b,cc=c;
						}
					}
				}
			}
		}
		cout << aa sp << bb sp << cc << "\n";
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

1
11
sven eriksson
erik svensson
sven svensson
erik eriksson
bjorn eriksson
bjorn svensson
bjorn bjornsson
erik bjornsson
sven bjornsson
thor odinsson
odin thorsson

output:

0 0 2

result:

ok correct! (1 test case)

Test #2:

score: 0
Accepted
time: 164ms
memory: 17636kb

input:

6
1
g u
14643
gj ek
hc bi
hi ke
ab ij
hk cj
ha bi
ag fe
eb ej
hd ei
bf gj
ke dd
ib jd
id jb
gd ei
cj bi
bi hg
ic dh
ke gk
af eg
fg dd
fe fa
be ge
hf kj
ih ci
gg jf
ed dd
eh gi
cc kd
ka fd
af gb
ka fe
ja ed
bc hi
eg cf
gg ff
kf gf
ii ch
hh ec
ei ec
cd gc
bh hb
dd id
ce bk
ib ic
bf kk
gh cd
hb he
if g...

output:

0 0 1
0 0 5
0 1 1
1 0 2
1 1 1
2 0 1

result:

ok correct! (6 test cases)

Test #3:

score: -100
Wrong Answer
time: 915ms
memory: 20044kb

input:

6
5000
dpbcebnavonpwlkermqftinonhckqynyxfwsybsalgmpqmedykqeunbolxhtcnrvbiqrjgziptkqgbsxrprapfzjxefiioecsacujyuhvsapywqohliffaqsbupnocesbgqutaanduiztwwqulwvrx dyearafwtdkifljtvcryeyfzgqghjwhuycusqkxngmanxxjhyqaethbfoqaigbbjuutwzzazsgcguaasrrrzsapcuhvzzjllatjqtxzrotdpcrrdogfwoonxjwisdwhqntlhqpflxvcido...

output:

0 0 4
0 1 3
1 1 2
2 0 2
1 2 1
0 0 5

result:

wrong answer Rozwiazanie nieoptymalne! (test case 6)