Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TCP/IP
- 우아한레디스
- 2475번
- 10026번
- 운영체제
- FIFO paging
- 윤성우 저자
- 이펙티브코틀린
- 제프리리처
- 에러핸들링
- HTTP
- Four Squares
- Operating System.
- 토마토
- n타일링2
- 스프링 입문
- 열혈 tcp/ip 프로그래밍
- 열혈 TCP/IP 소켓 프로그래밍
- C++
- Window-Via-c/c++
- inflearn
- BOJ
- Operating System
- redis
- Spring
- 스프링 핵심 원리
- 김영한
- C#
- OS
- 우아한 테크 세미나
Archives
- Today
- Total
나의 브을로오그으
[c++] 15829번 : Hashing 본문
https://www.acmicpc.net/problem/15829
#include <iostream>
#include <string>
using namespace std;
typedef unsigned long long ULL;
ULL getHash(char c, int r, int n, int M)
{
ULL ri = 1;
for (int i = 0; i < n; ++i)
{
ri = (ri * (ULL)r) % (ULL)M;
}
return ((ULL)(c - 'a' + 1) * ri);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
string word;
ULL result = 0;
int r = 31;
int M = 1234567891;
int L = 0;
cin >> L;
cin.ignore();
getline(cin, word);
for (int i = 0; i < L; ++i)
{
result += getHash(word[i], r, i, M);
result %= (ULL)M;
}
cout << (int)result << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1003번 : 피보나치 함수 (0) | 2022.05.18 |
---|---|
[c++] 18111번 : 마인크래프트 (0) | 2022.05.17 |
[c++] 11866번 : 요세푸스 문제 0 (0) | 2022.05.12 |
[c++] 11651번 : 좌표 정렬하기2 (0) | 2022.05.12 |
[c++] 11650번 : 좌표 정렬하기 (0) | 2022.05.12 |