본문 바로가기

전체 글12

백준 3673번 :: 나눌 수 있는 부분 수열 - C++ 힌트 1. i번째부터 j번째까지 연속하는 부분수열의 합을 \(A_{i, j}\)라고 하면, \[A_{i, j} = A_{1, j} - A_{1, i}\] 이므로 '연속하는 부분 수열의 합'을 '두 개의 부분 수열 누적합의 차'로 표현할 수 있다. 2. 1번의 내용을 응용하면, \[A_{i, j} \, mod \, d = (A_{1, j} - A_{1, i}) \, mod \, d = 0\] 이고, 이는 곧 \[A_{1, j} \, mod \, d = A_{1, i} \, mod \, d\] 이므로 '연속하는 부분 수열의 합이 d로 나누어 떨어지는 것'은 '두 부분 수열 누적합을 d로 나눴을 때의 나머지가 동일한 경우'와 같다. 3. 추가로 부분 수열 누적합의 나머지가 0인 경우 해당 부분 수열은 독자적으.. 2023. 8. 7.
Flutter 안드로이드 빌드 오류 해결하기 - Could not create task... 안드로이드 스튜디오에서 플러터 프로젝트의 안드로이드 부분을 열었을 때 Gradle Project Sync에 실패하는 오류 발생 오류 Multiple build operations failed. Could not create task ':flutter_plugin_android_lifecycle:generateDebugUnitTestConfig'. Could not create task ':path_provider_android:generateDebugUnitTestConfig'. Could not create task ':shared_preferences_android:generateDebugUnitTestConfig'. Could not create task ':url_launcher_android:g.. 2023. 7. 3.
Airpods Pro 2 Frequency Response Measurement - with Default Tip, AZLA SednaEarfit MAX, AZLA Crystal 한국어로 작성된 글은 아래 링크에서 읽어보실 수 있습니다. https://blog.naver.com/fishnchips775/223129213299 Measured with IEC 60318-4. Possible Peak from 8kHz. The sample used for this measurement does not represent characteristics of the entire product. Airpods Pro 2, 6A238h Beta Firmware, with Active Noise Cancellation ON These are the Eartips used for measurement. - Airpods Pro 2 Original Eartip - M - AZLA SednaEarfi.. 2023. 6. 15.
Flutter 프로젝트 갈아엎기 2 - 오디오 신호 처리, coast_audio에서 답을 찾다 중간고사 기간이 겹치는 것과 더불어, 실시간 오디오 필터링을 구현하기 위해서 처음 시도했던 방식이 실패하면서 2편을 쓰기까지 시간이 다소 걸렸습니다. 이전 내용을 읽어보고 싶으신 분들은 아래 글들을 참고하실 수 있습니다. https://potatosalad775.tistory.com/6 eqTrainer 갈아엎기 1 eqTrainer? 노래 듣는 걸 좋아하는 저는 음향기기나 이론에도 관심이 좀 있어서, 그런 주제로 대화할 수 있는 커뮤니티 여러 곳을 자주 구경하곤 합니다. 그러한 커뮤니티를 둘러보면 여러 고민들 potatosalad775.tistory.com https://potatosalad775.tistory.com/7 Flutter 프로젝트에서 Faust DSP 사용하기 얼마 전 eqTrainer .. 2023. 5. 22.