This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description: Gemini Web 快捷键, Ctrl+D 向下滚动, Ctrl+U 向上滚动, Ctrl+/ 聚焦输入框 | |
* @author: xiaoj655@gmail.com | |
* @date: 2025-10-03 | |
*/ | |
let style = document.createElement('style') | |
style.textContent = ` | |
.chat-history > div.conversation-container { | |
max-width: 1024px !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<algorithm> | |
#include<vector> | |
#include<queue> | |
#include<climits> | |
using namespace std; | |
using ll = long long; | |
const int N=205, M=1e4+10; |