-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1138 lines (762 loc) · 38.8 KB
/
Copy pathindex.html
File metadata and controls
1138 lines (762 loc) · 38.8 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#222" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#222" media="(prefers-color-scheme: dark)"><meta name="generator" content="Hexo 8.0.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Serif+SC:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Source+Code+Pro:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap&subset=latin,latin-ext">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css" integrity="sha256-VHqXKFhhMxcpubYf9xiWdCiojEbY9NexQ4jh8AxbvcM=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.1/animate.min.css" integrity="sha256-PR7ttpcvz8qrF57fur/yAx1qXMFJeJFiA6pSzWi0OIE=" crossorigin="anonymous">
<script class="next-config" data-name="main" type="application/json">{"hostname":"uint8.moe.page","root":"/","images":"/images","scheme":"Muse","darkmode":true,"version":"8.25.0","exturl":false,"sidebar":{"position":"left","width_expanded":320,"width_dual_column":240,"display":"post","padding":18,"offset":12},"hljswrap":true,"codeblock":{"theme":{"light":"vs","dark":"vs2015"},"prism":{"light":"prism","dark":"prism-dark"},"copy_button":{"enable":true,"style":"default"},"fold":{"enable":true,"height":800},"language":true},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"stickytabs":false,"motion":{"enable":true,"async":false,"duration":200,"transition":{"menu_item":"fadeInDown","post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"}}</script><script src="/js/config.js" defer></script>
<meta name="description" content="unsigned char's blog">
<meta property="og:type" content="website">
<meta property="og:title" content="蒟蒻のBlog">
<meta property="og:url" content="https://uint8.moe.page/index.html">
<meta property="og:site_name" content="蒟蒻のBlog">
<meta property="og:description" content="unsigned char's blog">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="unsigned char">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://uint8.moe.page/">
<script class="next-config" data-name="page" type="application/json">{"sidebar":"","isHome":true,"isPost":false,"lang":"zh-CN","comments":"","permalink":"","path":"index.html","title":""}</script>
<script class="next-config" data-name="calendar" type="application/json">""</script>
<title>蒟蒻のBlog</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js" integrity="sha256-XL2inqUJaslATFnHdJOi9GfQ60on8Wx1C2H8DYiN1xY=" crossorigin="anonymous" defer></script>
<script src="/js/utils.js" defer></script><script src="/js/motion.js" defer></script><script src="/js/sidebar.js" defer></script><script src="/js/next-boot.js" defer></script>
<script class="next-config" data-name="enableMath" type="application/json">true</script><script class="next-config" data-name="mathjax" type="application/json">{"enable":true,"tags":"none","js":{"url":"https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-mml-chtml.js","integrity":"sha256-MASABpB4tYktI2Oitl4t+78w/lyA+D7b/s9GEP0JOGI="}}</script>
<script src="/js/third-party/math/mathjax.js" defer></script>
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
<link rel="alternate" href="/atom.xml" title="蒟蒻のBlog" type="application/atom+xml">
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<div class="column">
<header class="header" itemscope itemtype="http://schema.org/WPHeader"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">蒟蒻のBlog</h1>
<i class="logo-line"></i>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger" aria-label="搜索" role="button">
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu"><li class="menu-item menu-item-home"><a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a></li><li class="menu-item menu-item-about"><a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a></li><li class="menu-item menu-item-tags"><a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a></li><li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a></li>
</ul>
</nav>
</header>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<div class="sidebar-panel-container">
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="unsigned char"
src="/images/user_avatar.webp">
<p class="site-author-name" itemprop="name">unsigned char</p>
<div class="site-description" itemprop="description">unsigned char's blog</div>
</div>
<div class="site-state-wrap animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">17</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">17</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
</div>
<div class="links-of-author animated">
<span class="links-of-author-item">
<a href="https://github.com/chtholly255" title="GitHub → https://github.com/chtholly255" rel="noopener me" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="https://www.luogu.com.cn/user/421773" title="Luogu → https://www.luogu.com.cn/user/421773" rel="noopener me" target="_blank"><i class="fa fa-code fa-fw"></i>Luogu</a>
</span>
<span class="links-of-author-item">
<a href="https://bangumi.tv/user/947451" title="Bangumi → https://bangumi.tv/user/947451" rel="noopener me" target="_blank"><i class="fa fa-bookmark fa-fw"></i>Bangumi</a>
</span>
<span class="links-of-author-item">
<a href="https://copr.fedorainfracloud.org/coprs/zhangyaoan/" title="Fedora COPR → https://copr.fedorainfracloud.org/coprs/zhangyaoan/" rel="noopener me" target="_blank"><i class="fab fa-fedora fa-fw"></i>Fedora COPR</a>
</span>
<span class="links-of-author-item">
<a href="/atom.xml" title="RSS → /atom.xml" rel="noopener me"><i class="fa fa-rss fa-fw"></i>RSS</a>
</span>
</div>
<div class="cc-license animated" itemprop="license">
<a href="https://creativecommons.org/licenses/by-sa/4.0/" class="cc-opacity" rel="noopener" target="_blank"><img src="https://cdnjs.cloudflare.com/ajax/libs/creativecommons-vocabulary/2020.11.3/assets/license_badges/small/by_sa.svg" alt="Creative Commons"></a>
</div>
</div>
</div>
</div>
</aside>
</div>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2026/01/18/Is-inline-effective/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2026/01/18/Is-inline-effective/" class="post-title-link" itemprop="url">inline 对于函数内联优化有效吗?</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2026-01-18 11:14:42" itemprop="dateCreated datePublished" datetime="2026-01-18T11:14:42+08:00">2026-01-18</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2026-05-10 11:25:34" itemprop="dateModified" datetime="2026-05-10T11:25:34+08:00">2026-05-10</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>现代 C++ 中 <code>inline</code> 对于指示函数内联优化,有效吗?</p>
</blockquote>
<p><strong>It depends!</strong></p>
<p>简短地说,这取决于编译器。</p>
<p>对于 GCC,一定程度上是有效的;而对于 Clang,基本上是无效的。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2026/01/18/Is-inline-effective/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2025/06/09/KDE-beautify/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/06/09/KDE-beautify/" class="post-title-link" itemprop="url">KDE 配置记录</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2025-06-09 19:49:00" itemprop="dateCreated datePublished" datetime="2025-06-09T19:49:00+08:00">2025-06-09</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2026-03-02 21:49:56" itemprop="dateModified" datetime="2026-03-02T21:49:56+08:00">2026-03-02</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>众所周知,Gnome 40 之后的版本可个性化程度很差,尤其是 Gnome 48 更新了 UI,虽然配色方案好看了很多,但是用力过度的圆角让人感觉很不爽 <del>强迫症犯了(bs</del></p>
<p>在这时我心生了切换到 KDE 的念头,但是由于硬盘中 280G+ 的 <em>不明文件</em> 实际上并不可行,所以最后也只是在虚拟机里体验了一把</p>
<p><img src="/2025/06/09/KDE-beautify/%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE_20250716_211027.png" alt="screen_shot_1"></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/06/09/KDE-beautify/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2025/03/22/Collision-dectection/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/03/22/Collision-dectection/" class="post-title-link" itemprop="url">记一次讨论</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2025-03-22 14:44:39 / 修改时间:15:14:51" itemprop="dateCreated datePublished" datetime="2025-03-22T14:44:39+08:00">2025-03-22</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>某物理老师在公开课上使用 AI 生成的 HTML 动画演示分子热运动。我对其碰撞检测的算法产生了兴趣。研究代码后发现,除去各种 bug,它甚至在使用单次 $O(n^2)$ 的暴力算法检测碰撞……</p>
<p>……就这点破事值得写一篇文章吗 QAQ……</p>
<p>……我现在连这种简单问题也解决不了吗 QwQ……</p>
</blockquote>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/03/22/Collision-dectection/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/11/23/Away-from-OI/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/11/23/Away-from-OI/" class="post-title-link" itemprop="url">Forget & Memory —— OI 退役感言</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-11-23 18:52:22" itemprop="dateCreated datePublished" datetime="2024-11-23T18:52:22+08:00">2024-11-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-12-14 23:23:39" itemprop="dateModified" datetime="2024-12-14T23:23:39+08:00">2024-12-14</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>以个人的水平,远远不足以参加省选,NOIP 之后,不论结果如何,都是要退役了。近日忙于男八的准备工作,也看到了 Anoshag_Ruwan, Coder_User 等一众退役 OIer,想到自己一周之后也会和他们一样,莫名地感到有点伤感。</p>
<p>回想起这 4 年来夹杂着颓废和摆烂的 OI 生涯,还是有许多事情是值得回忆的;退役之后,我当如何面对 whk,如何面对繁杂的人际关系?面对着未知的未来,多少有点迷茫……</p>
<p>4 年的 OI 生涯,是时候告一段落了,该做一下总结了……</p>
<p>——写于 2024 年 11 月 23 日傍晚,NOIP 2024 前一周</p>
</blockquote>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/11/23/Away-from-OI/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/11/23/NOIP-2024-summary/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/11/23/NOIP-2024-summary/" class="post-title-link" itemprop="url">NOIP 2024 爆零记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-11-23 18:50:25" itemprop="dateCreated datePublished" datetime="2024-11-23T18:50:25+08:00">2024-11-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-12-07 19:03:13" itemprop="dateModified" datetime="2024-12-07T19:03:13+08:00">2024-12-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>本篇是 NOIP 2024 的游记,之后就要退役了 QwQ,所以这大概是我的最后一篇 OI 赛事的游记了</p>
</blockquote>
<p>期望得分 $[40, 60] + [20, 40] + 0 + 0 = [60, 100] pts$ 全是无脑特殊性质 <del>和<strong>爆零</strong>有什么区别</del></p>
<p>实际得分 $60 + 35 = 95 pts$,预料之内</p>
<p>被 T1 和 T2 创死,拿下 OI 生涯中最差成绩,省四遗憾离场</p>
<p>OI 生涯就这样不圆满地结束了 QwQ</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/11/23/NOIP-2024-summary/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/11/12/NOI-Linux-note/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/11/12/NOI-Linux-note/" class="post-title-link" itemprop="url">NOI Linux 使用技巧</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-11-12 18:12:00" itemprop="dateCreated datePublished" datetime="2024-11-12T18:12:00+08:00">2024-11-12</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-11-22 22:59:00" itemprop="dateModified" datetime="2024-11-22T22:59:00+08:00">2024-11-22</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>前情提要:由于我是机房中为数不多的几个用过 NOI Linux 的人,zhub 让我写了本文以向大家分享 NOI Linux 使用技巧。</p>
<p><del>疑似是有点太详细了,我写的大部分东西 zhub 都讲了</del></p>
</blockquote>
<blockquote>
<p>首先声明一下,我不是 Linux 专家,对一些东西了解不多,只是分享一些 <strong>实用主义</strong> 的技巧,请大佬轻喷</p>
</blockquote>
<p><strong>强烈建议场上把在 Windows 中写的程序在 NOI Linux 编译一遍,防止挂分</strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/11/12/NOI-Linux-note/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/10/27/CSP-S-2024-summary/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/10/27/CSP-S-2024-summary/" class="post-title-link" itemprop="url">CSP-S 2024 游记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-10-27 22:27:50" itemprop="dateCreated datePublished" datetime="2024-10-27T22:27:50+08:00">2024-10-27</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-12-07 19:05:45" itemprop="dateModified" datetime="2024-12-07T19:05:45+08:00">2024-12-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>CSP-S 2024 游记</p>
</blockquote>
<p>期望得分 $100 + 100 + 50 + 0 = 250pts$</p>
<p><del>等待 CCF 下发代码中…</del> 今年 CCF 似乎没公开码,但是好消息是没挂分</p>
<p>2024/12/4 Upd: 拿到了 7 级蓝钩,没想到这竟是我 OI 生涯中的高光时刻</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/10/27/CSP-S-2024-summary/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/10/27/CCPC-2024-JN/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/10/27/CCPC-2024-JN/" class="post-title-link" itemprop="url">CCPC 2024 JN 打铁记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-10-27 14:23:18 / 修改时间:19:08:50" itemprop="dateCreated datePublished" datetime="2024-10-27T14:23:18+08:00">2024-10-27</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>和 k_Sword 和 NAPeach 组队(QEFW_#kzn a.k.a. 企鹅访问坤)参加了 CCPC 2024 济南站,2AC 273 罚时,取得了 rk 313 / 323 的好成绩,成功打铁</p>
<p>菜是原罪 QwQ</p>
</blockquote>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/10/27/CCPC-2024-JN/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/09/05/insert-dp/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/09/05/insert-dp/" class="post-title-link" itemprop="url">插入类 DP 学习笔记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-09-05 21:05:00" itemprop="dateCreated datePublished" datetime="2024-09-05T21:05:00+08:00">2024-09-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-11-23 10:48:42" itemprop="dateModified" datetime="2024-11-23T10:48:42+08:00">2024-11-23</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="特征"><a href="#特征" class="headerlink" title="特征"></a>特征</h3><ul>
<li>构造某个<strong>排列</strong>或求排列方案数</li>
<li>答案与函数图像的转折点有关</li>
<li>答案可以由块的合并得出,且上述对答案的影响可以在合并时计算</li>
</ul>
<h3 id="核心思想"><a href="#核心思想" class="headerlink" title="核心思想"></a>核心思想</h3><p>维护互不相关的块,在以一某种顺序加入新元素时进行对块的新增、合并、扩张,最终将所有块合并为一个,得到答案</p>
<p>用 $dp_{i, j}$ 表示已经加入 $i$ 个元素,划分为 $j$ 个块的情况</p>
<ul>
<li>新增: $dp_{i, j} \gets dp_{i - 1, j - 1}$</li>
<li>合并: $dp_{i, j} \gets dp_{i - 1, j + 1}$</li>
<li>扩张: $dp_{i, j} \gets dp_{i - 1, j}$</li>
</ul>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/09/05/insert-dp/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://uint8.moe.page/2024/07/31/The-useage-of-bitset/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/user_avatar.webp">
<meta itemprop="name" content="unsigned char">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="蒟蒻のBlog">
<meta itemprop="description" content="unsigned char's blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content=" | 蒟蒻のBlog">
<meta itemprop="description" content="">
</span>