# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
929078 | sondos225 | Lozinke (COCI17_lozinke) | C++17 | 210 ms | 16352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fast ios_base::sync_with_stdio(0);cin.tie(NULL);cout.tie(NULL);
#define pb push_back
#define yes "YES"
#define no "NO"
#define bigg INT_MAX
#define debug(x) cout<<(#x)<<" = " <<x<<endl;
#define all(x) x.begin(),x.end()
#define sz size()
#define nn '\n'
#define mms(x,y) memset(x,y,sizeof(x))
#define forr(i,j,n) for (int i=j; i<n; i++)
#define forn(i,j,n) for (int i=j; i>n; i--)
#define fi first
#define se second
#define la "LA"
#define cinn(x,y) for(int i=0; i<y; i++) cin>>x[i];
#define pii pair<int,int>
signed main()
{
// #ifndef LOCAL
// freopen("helpcross.in","r",stdin);
// freopen("helpcross.out","w", stdout);
// #endif
fast
int n;
cin>>n;
string a[n];
unordered_map<string,int> m;
//unordered_map<string,bool> b;
forr(i,0,n)
{
cin>>a[i];
m[a[i]]++;
// b[a[i]]=1;
}
int ans=0;
forr(k,0,n)
{
string s=a[k];
int w=s.sz;
//unordered_map<string,bool> cb=b;
map<string, bool> vis;
forr(j,0,w)
{
string cur="";
forr(i,j,w)
{
cur+=s[i];
//cout<<k<<' '<<cur<<endl;
// if (cb[cur])
if(!vis[cur]){ ans+=m[cur];
vis[cur]=1;}
//cb[cur]=0;
}
// cout<<k<<' '<<cur<<endl;
}
}
cout<<ans-n;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |